*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.loginsection{
    width: 100%;
    height: 100vh !important ;
    background: url(../assets/login.jpg);
    background-size: cover;
    background-position: center;
}
.loginform{
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 50px 25px;
    position: relative;
    display: block;
}
.signupsection{
    width: 100%;
    height: 120vh !important ;
    background: url(../assets/login.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.signupformsec{
    width: 100%;
    height: 120vh !important ;
    background-color: #fff;
    padding: 25px;
    position: relative;
    display: block;
}
.form-floating-group {
    position: relative;
    margin-bottom: 1rem !important;
  }
  
  .form-floating-group .form-label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0 5px;
    pointer-events: none;
    color: #aaa;
  }
  
  .form-floating-group .loginput:focus + .form-label,
  .form-floating-group .loginput:not(:placeholder-shown) + .form-label {
    top: 12px;
    left: 8px;
    color: #000;
    padding-bottom: 4px;
    font-size: 12px;
    background-color: transparent !important;
  }
  
  .form-floating-group .loginput {
    width: 100%;
    height: 50px;
    padding: 15px;
    background-color: #F6F6F6;
    caret-color: #000;
    font-size: 14px;
    outline: none;
    border: none;
    border-radius: 8px;
  }

  .form-floating-group .loginput:focus {
    width: 100%;
    height: 50px;
    padding: 10px 12px 5px;
    background-color: #fff;
    caret-color: #000;
    outline: none;
    border: 1px solid #000;
    border-radius: 8px;
  }
  .loginput::placeholder {
    opacity: 0; /* Hide placeholder */
    transition: opacity 0.3s ease;
  }
  
  .loginput:focus::placeholder {
    opacity: 0; /* Keep placeholder hidden on focus */
  }
  
  .loginput:not(:placeholder-shown)::placeholder {
    opacity: 0; /* Hide placeholder if input has text */
  }
  .forgot{
    font-size: 14px;
    color: #000;
    text-decoration: underline;
    font-weight: 600;
  }
  .fs-14{
    font-size: 14px;
  }
.required{
    color: #F06F2B;
}
  .loginbtn{
    width: 100%  !important;
    height: 45px !important; 
    background-color: #F06F2B !important;
    color: #fff !important;
    border: 1px solid #00297024 !important;
border-radius: 8px !important;
  }
  .footer {
    text-align: center;
    margin-top: 80px;
    font-size: 14px;
    color: #666;
  }
  input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 992px) {

    .signupformsec {
        width: 100%;
        height: auto !important;
    }
    .signupsection {
        width: 100%;
        height: auto !important;
    }
}