@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

#login-page {
    height: 100vh;
    font-family: 'Poppins';
}

.left-column,
.right-column {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.left-column{
    
    justify-content: space-between;
}
.right-column {
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex !important;
}
.right-column img{
    height: 82%;
}
.span-color {
    color: var(--secondary-blue) ;
}

.link-forgot-pwd {
    color: var(--dark-grey);
    font-weight: 600;
    text-decoration: none;
}

.left-column .form-col {
    min-width: 70%;
}

.toggle-password {
    position: absolute;
    right: 8px;
    bottom: 8px;
}

/* Responsive Styling */
@media (max-width: 768px) {

    .left-column .form-col {
        min-width: 90%;
    }

}
@media (max-width: 576px) {

    .right-column {
       display: none !important;
    }
    #reset-pwd-page .form{
        padding: 20px !important;
    }

}

/* reset pwd */
#reset-pwd-page{
     background-image: url("../img/login/reset-pwd-bg.jpg");
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#reset-pwd-page .form{
    background-color: var(--white-color);
min-width: 30%;
    padding: 40px;
    border-radius: 10px;
    width: fit-content;
}
#reset-pwd-page .key-icon{
    padding: 10px;
    border-radius: 50%;
    background-color: var(--blue-3);
}

#reset-pwd-page .heading-h2{
    margin: 20px 0;
}
#reset-pwd-page  .paragraph{
    margin-bottom: 30px;
    color: var(--dark-grey);
    font-weight: 600;
    font-size: 16px;
}

#reset-pwd-page .form .btns-form{
    display: flex;
flex-direction: row;
justify-content: space-between;
}
#reset-pwd-page .form .btns-form .btn{
    margin: 20px 0 0 0; 
    border-radius: 10px;
    width: -webkit-fill-available;
    margin-right: 10px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
}

#reset-pwd-page .form .btns-form .btn-send{
    background: var(--background-gradient-right);
    color: var(--white-color);
    border: 1px solid var(--background-gradient-right);
}