*{

  box-sizing: content-box;
  margin: 0% auto;
 
}



.containerSignup{
  background: cadetblue;
   height: 100%;
   margin: 0%;
   width: 100%;
   position: fixed;
   box-sizing: content-box;
 
   animation-duration: 0.5s;
   animation-name: slidein;
   animation-iteration-count: initial;
}




.header{
  padding-top: 10px;
  width: 100%;
  height: 150px;
  text-align: center;
  position: relative;
}
.header h2{
  color: white;
  font-size: 30px;
  font-family: Arial, Helvetica, sans-serif;
}
.header p{
  color: white;
}
.header a {
  margin-top: 30px;
  background: white;
  padding: 10px;
  font-size: 18px;
  width: 120px;
  height: 10px;
  position: relative;
border-radius: 12px;
cursor: pointer;
background: white;

}
.header button {
  margin-top: 30px;
  background: white;
  padding: 10px;
  font-size: 18px;
  width: 120px;
  height: 10px;
 border: none;
 background: none;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.formsContainer{
  width: 100%  auto;
  height: 100% auto;
  background: white;
  position: relative;
  margin:0px 40px  ;
  border-radius: 10px;
  text-align: center;

}
.input-field
{
  box-sizing: border-box;
  font-size: 14px;
  padding: 6px;
  border-radius: 7px;
  border: 1px solid rgb(168, 168, 168);
  width: 200px ;
  outline: none;
}
.input-field:hover
{

  outline: cadetblue dashed 1px ;
}
.formsContainer h1{
  padding: 10px;
}
.btn-secondery{
  box-sizing: border-box;
  font-size: 14px;
  padding: 10px;
  border-radius: 7px;
  border: 0px solid rgb(168, 168, 168);
  width: 250px; 
  font-family: Arial, Helvetica, sans-serif;
  background: cadetblue;
  outline: none;
  color: white;
  cursor: pointer;
}




.footerBox{
  width: 100%;
 padding-bottom: 12px;
  position: fixed;
 background: none;
 height: 100% auto;
 bottom: 0;
 
  
}
.footerBox p{
  background: none;
position: relative;

margin: 0px 110px 10px 10px;
font-size: 13px;
border-right: 6px solid rgb(255, 255, 255);
padding: 2px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color: rgba(255, 250, 250, 0.712);
}

.footerBox img{
margin-top: 1px;
width: 100px;
margin-right: 3px;
height: auto;
float: right;

}
.footerBox span{
  margin: 3px;
width: 100px;
height: auto;
font-family: Arial, Helvetica, sans-serif;
color: white;


}
.notify{
 
}


@keyframes slidein {
0%{
    height: 50px;
 
  }
  100%{
    height: 0px;
  }
}
.notify{
padding: 10px;
transition:  5s ;
position:fixed;
top:5px;
width:100%  ;
height:auto;  
box-sizing:border-box;
color:white;  
text-align:center;
z-index: 10;
overflow:hidden;
box-sizing:border-box;

}
#notifyTypes{
  display: none;
 animation-name: slidein;
}
#notifyType{
width: 100%;
height: auto;
color: #721c24;
padding: 8px 10px;
text-align: center;
border-radius: 5px;
background: #f8d7da;
border: 1px solid #f5c6cb;

}

.error-text{
color: #721c24;
padding: 8px 10px;
text-align: center;
border-radius: 5px;
background: #f8d7da;
border: 1px solid #f5c6cb;
margin-bottom: 10px;
display: none;

}