*{
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
.form-sign-up-container,.form-sign-in-container{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(120deg,#3498db,#8e44ad);
}
.form-sign-in{
    width: 360px;
    background-color: #f1f1f1;
    height: 580px;
    padding: 55px 40px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
}
.form-sign-up{
    width: 360px;
    background-color: #f1f1f1;
    height: 609px;
    padding: 55px 40px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
}
.form-sign-in h1{
    text-align: center;
    margin-bottom: 50px;
    font-size: 35px;
    font-family: 'Baloo 2',cursive;
}
.form-sign-up h1{
    text-align: center;
    margin-top:0px;
    margin-bottom: 0px;
    font-size: 35px;
    font-family: 'Baloo 2',cursive;
}
.txtb{
    border-bottom: 2px solid #adadad;
    position: relative;
    margin: 30px 0px;
}
.txtbup{
    border-bottom: 2px solid #adadad;
    position: relative;
    margin: 20px 0px;
}
.txtb input{
    font-size: 15px;
    color: #333;
    border: none;
    width: 100%;
    outline: none;
    background: none;
    padding: 0px 5px ;
    height: 40px ;
    font-family: 'Baloo 2',cursive;
}
.txtbup input{
    font-size: 15px;
    color: #333;
    border: none;
    width: 100%;
    outline: none;
    background: none;
    padding: 0px 5px ;
    height: 40px ;
    font-family: 'Baloo 2',cursive;
}
.txtb span::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background:linear-gradient(120deg,#3498db,#8e44ad);
    display: flex;
}
.txtbup span::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background:linear-gradient(120deg,#3498db,#8e44ad);
    display: flex;
}
.logbtn{
    width: 100%;
    height: 50px;
    border: none;
    background: linear-gradient(120deg,#3498db,#8e44ad);
    background-size:180%;
    color:white;
    outline: none;
    font-size: 15px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: .5s;
    font-family: 'Baloo 2',cursive;
}
.logbtn:hover{
    background-position: right;
}
#btn-sign-up{
    margin-top: 48px;
}
#btn-sign-in{
    margin-top: 88px;
}
.bottom-in{
    margin-top:35px;
    text-align: center;
    font-family: 'Baloo 2',cursive;
}
.bottom-up{
    margin-top:35px;
    text-align: center;
    font-family: 'Baloo 2',cursive;
}
.social-media{
    width: 100%;
    text-align: center;
    margin-top: 45px;
}
.social-media ul{
    list-style: none;
}
.social-media ul li{
    display: inline-block;
    cursor: pointer;
    padding: 0px 15px;
}
.social-media img{
    height: 35px;
    width: 35px;
    position: relative;
}
.social-media img:hover{
    top: -7px;
    position: relative;
    transition: 1s;
}
.social-media-up{
    margin-top: 33px !important;
}
.alert-error{
    position: absolute;
    color: red;
    margin-left: 6px;
}
.alert-success{
    position: absolute;
    color:green;
    margin-left: 6px;
}

/* loading */
.lds-facebook {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
  }
  .lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 4px;
    width: 8px;
    background: #fff;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .lds-facebook div:nth-child(1) {
    left: 4px;
    animation-delay: -0.24s;
  }
  .lds-facebook div:nth-child(2) {
    left: 16px;
    animation-delay: -0.12s;
  }
  .lds-facebook div:nth-child(3) {
    left: 28px;
    animation-delay: 0;
  }
  @keyframes lds-facebook {
    0% {
      top: 4px;
      height: 32px;
    }
    50%, 100% {
      top: 12px;
      height: 16px;
    }
  }
  /* loading */