*
{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
.contaner
{
    width: 100%;
    height: 100vh;
    background-color: whitesmoke;
   background-position: center;
   background-size: cover;
   display: flex;
   justify-content: center;
   align-items: center;
}
.form-box
{
    width: 90%;
    max-width: 450px;
    min-width: 350px;
    background-color: #fff;
    padding: 55px;
    text-align: center;
    border-radius: 10px;

}
.form-box h1
{
   font-size: 30px;
   color: #C75724; 
}
.form-box .underline
{
  width: 30px;
  height: 4px;
  background-color: #C75724;
  margin: 10px auto 50px auto;
  border-radius: 5px;
  transition: transform .5s;
}
.input-field
{
    background-color: #EFEAE5;;
    margin: 15px 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    max-height:60px;
    transition: max-height 0.5s;
    overflow: hidden;
}
.input-field input
{
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 10px 15px;
}
.input-field i
{
    margin-left: 15px;
    color: #999;
}
form p
{
    text-align: left;
    font-size: 18px;

}
#nameerror,#emailerror,#passworderror
{
   width: 100%;
}
#namearr,#passwordarr
{
    width: 100%;
}
form p a{
    text-decoration: none;
    color: #C75724;
}
.btn-field
{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.btn-field button
{
   flex-basis: 48%;
   background-color: #C75724;
   color: white;
   height: 40px;
   border-radius: 20px;
   border: 0;
   outline: 0;
   cursor: pointer;
   /* transition: background 1s; */
}
.input-group
{
   height: 280px; 
}
button.disable
{
    background: #eaeaea;
    color: #999;
}
