@import url(style.css);

*{
    margin: 0;
    padding: 0;
    box-sizing: content-box;
}
  
body{
    min-height: 100vh;
}

.bg-design {
    width: 100%;
    height: 95vh;
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)), url(../images/home-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.login-home {
    margin-top: 4rem;
    display: flex;
}

.login-form{
    width: 360px;
    background: #0e1727;
    height: 380px;
    padding: 80px 40px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  
  .login-form h1{
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
  }
  
  .txtb{
    border-bottom: 2px solid #adadad;
    position: relative;
    margin: 30px 0;
  }
  
  .txtb input{
    font-size: 15px;
    color: rgb(228, 228, 228);
    border: none;
    width: 100%;
    outline: none;
    background: none;
    padding: 0 5px;
    height: 40px;
  }

  .txtb span::before{
    content: attr(data-placeholder);
    position: absolute;
    top: 50%;
    left: 5px;
    color: #555;
    transform: translateY(-50%);
    z-index: -1;
    transition: .5s;
  }
  
  .txtb span::after{
    content: '';
    position: absolute;
    width: 00%;
    height: 2px;
    background: linear-gradient(120deg, #00fffb,#0097a8,#005157);
    transition: .5s;
  }
  
  .focus + span::before{
    top: -5px;
  }
  .focus + span::after{
    width: 100%;
  }
  
  .logbtn{
    display: block;
    width: 100%;
    height: 50px;
    border: none;
    background: linear-gradient(120deg, #00fffb,#0097a8,#003957);
    background-size: 200%;
    color: #fff;
    outline: none;
    cursor: pointer;
    transition: .5s;
  }
  
  .logbtn:hover{
    background-position: right;
  }
  
  .bottom-text{
    margin-top: 60px;
    text-align: center;
    font-size: 13px;
    color: rgb(200, 200, 200);
  }

  .bottom-text a {
      color: #29d9d5;
  }

#reg-formss {
    display: none;
}

.reg-form{
    width: 360px;
    background: #10192a;
    height: 530px;
    padding: 70px 40px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  
.reg-form h1{
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}
