:root {
    --dark-green: #163020;
    --light-green: #527853;
    --golden: #f3d15f;
    --pastel-green: #e7ece7;
  
    --hover-green: #e8efe8;
  }


 


.reset-password-wrapper{
    background: url("../Assets/signup_image.webp");
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    font-family: "Mulish", sans-serif !important;
    
    
   
}

.logo-wrapper{
    width: 250px;
}

.logo-wrapper img {
    width: 100%;
}

.container{
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}

.fp-wrapper{
    background-color: #fff;
    padding: 20px;
    border-radius: 0 15px;
    max-width: 448px;
    width: 90%;
    margin-top: 30px;
}

.forgot-password-img{
    max-width: 100px;
}

.forgot-password-img img{
    width: 100%;
}



.login-box-msg {
    text-align: center !important;
    font-size: 1.4rem;
    color: var(--light-green);
    margin-bottom: 0px;
}

.login-box-desc{
    text-align: center !important;
    color: var(--dark-green);
   
    margin: 15px 0px;
}

.login-box-body input {
    width: 100% !important;
    background: transparent;
    border: 1px solid var(--light-green) !important;
    outline: none !important;
    border-radius: 10px !important;
    padding: 10px !important;
    color: var(--light-green) !important;
    margin-bottom: 15px;
}

.otp-btn-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.otp-btn{
    background-color: var(--golden);
    margin: 0 auto !important;
}


.custom-btn {
    padding: 12px 30px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 18px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    border: none;
    outline: none;
    color: var(--dark-green);
    transition: all 0.6s;
  }
  
  .custom-btn:hover {
    border-top-right-radius: 18px;
    border-bottom-left-radius: 18px;
    border-top-left-radius: 18px;
    border-bottom-right-radius: 18px;
    opacity: 0.8;
  }


  .back-container{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .back-container a {
    color: var(--dark-green);
    text-decoration: none;

  }

  .back-container a:hover{
    color: var(--light-green);
  }



  @media screen and (max-width: 760px) {
    .container{
     
        padding-top: 30px;
    }

    .logo-wrapper{
        width: 200px;
    }
    
    .logo-wrapper img {
        width: 100%;
    }
  }
