.acc-cont{
    width: 125px;
    display:block;
    margin:auto;
}
.alan-red-btn {
    margin:10px auto;
    background-color: #CA1948;
    width: 100%;
    padding: 5px;
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 15px;
    font-family: "Noto-Bold";
    cursor:pointer;
}
.checkbox {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
}
.alan-green-txt {
    color: #159F97;
    font-size:10px;
    font-family:'Noto-Regular';
}
.alan-orange-txt{
    color:orange;
    text-decoration: none;
    cursor:pointer;
}
.pass-cont{
    width:90%;
    height:23px;
    position:relative;
    margin:5px auto;
}
.bar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:#E5E5E5;
    border-radius:20px;
}
#pass-strength{
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:3px;
    border-radius:20px;
    background:transparent;
    z-index:10;
    transition: width 0.5s linear, background 0.5s linear;
    will-change:width, background;
}
#pass-strength.weak{
    background:red;
    width:33%;
}
#pass-strength.strong{
    background:orange;
    width:66%;
}
#pass-strength.verystrong{
    background:green;
    width:100%;
}
#pass-desc{
position:absolute;
bottom:0;
left:0;
font-size:10px;
font-family:'Noto-Regular';
}

@-webkit-keyframes animatetop {
from {top:-300px; opacity:0} 
to {top:0; opacity:1}
}
@keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
.sign-up-modal {
  display: none; 
  position: fixed;
  z-index: 600; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.4); 
}
#login-modal{
    visibility:visible;
    opacity:1;
    transition:all 0.4s ease-out;
}
#register-modal{
    display:none;
    visibility:hidden;
    opacity:0;
    transition:all 0.4s ease-out;
}
.modal-content {
  background-color: #FFF;
    position: relative;
    margin: 4% auto;
    padding: 20px;
    width: 35%;
    border-radius: 50px;
    animation: animatetop 0.5s ease-in;
}
.modal-header{
    width: 100%;
    text-align: center;
    color: #159F97;
    font-family: 'Noto-Bold';
    margin:2px 0;
    font-size: 30px;
}
.modal-content span{
font-size: 30px;
    position: absolute;
    cursor: pointer;
    
}
 .social-sign-up{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    width: 125px;
    margin: 30px auto;
    height: auto;
 }
  .social-sign-up a{
    text-decoration: none;
    width: 50px;
    border-radius: 50%;
    padding: 10px 0;
    text-align: center;
    background: #555559;
  }
      
 .social-sign-up a > i{
    color: white;
    font-size: 30px;
 }
 .modal-input-cont{
     display:block;
     margin:10px auto;
     width:52%;
     height:auto;
 }
 .modal-input{
    color:#555559;
    background: #E5E5E5;
    font-family: "Noto-Bold";
    border-radius: 20px;
    outline: none !important;
    border: 0;
    height:40px;
    padding: 0 40px;
    width: -webkit-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: calc(100% - 80px);
}
.sign-up-form-control{
 position:relative;
 width:100%;
 height:auto;
 padding-top: 5px;
}
.sign-up-icon-cont{
    position:absolute;
    width:30px;
    height:30px;
    left:5px;
    top:10px;
    border-radius:50%;
    background: #159F97;
}
.sign-up-icon-cont i{
    position:absolute;
    font-size:15px;
    top:50%;
    left:49%;
    transform:translate(-50%,-50%);
    color:#FFF;
}
#acceptsignup{
    display:none;
    color:#CA1948;
    width:100%;
    text-align:center;
    font-size:16px;
    font-family:'Noto-Bold';
    padding: 15px 0;
}
@media only screen and (max-width:1024px){
    .modal-content {width:50%;}
}
@media only screen and (max-width:768px){
    .modal-content {width:65%;}
}
@media only screen and (max-width:600px){
    .modal-content {width:85%;}
}