*{
    font-family: 'Nunito Sans', sans-serif;
}

body {
    background-color: #F5FFFC;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    padding: 0;
    margin: 0px;
}

.d-none {
    display: none !important;
}

.main-login-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding-top: 30px;
    padding-bottom: 20px;
    height: 81vh;
    position: relative;
    width: 100%;
    max-width: 508px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
} 
.auth-text {
    font-weight: 600;
    font-size: 28px;
    color: #1a1a1a;
    text-align: center;
    line-height: 100%;
    letter-spacing: -0.3px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: Nunito Sans;
}
.auth-description {
    text-align: center;
    font-size: 16px;
    color: #5E5E5E;
    line-height: 100%;
    padding-bottom: 48px;
    margin-bottom: 0px;
    margin-top: 0px; 
    font-family: Nunito Sans;
}

.back-arrow-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background-color: #009865;
    width: 32px;
    height: 32px;
    
}

.back-arrow-anchor {
    position: absolute;
    top: 30px;
    left: 30px;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 390px;
    /* width: 100%; */
}
.form-lables {
    /* font-weight: 600; */
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    /* color: #ECECEC; */
    color: #374151;
    padding-bottom: 8px;
    display: block;
    font-family: Nunito Sans;
}
.form-btn-div {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
.form-btn {
    width: 100%;
    background-color: #2FEF10;
    color: #000000;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    height: 50px;
    /* color: #FFFFFF; */
    line-height: 100%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: Nunito Sans;
}
.form-inputs {
    font-size: 16px;
    transition: all 0.2s ease;
    border-radius: 8px;
    padding: 15px 49px;
    border: 2px solid #e5e7eb;
    background: #fafafa;
    background-color:white !important;
    border: none;
    height: 20px;
    background: none;
    width: 100%;
    color: #1a1a1a;
    box-shadow: 0 0 20px 0 rgba(218, 221, 243, 0.5);
    
}

.form-inputs::placeholder {
    font-weight: 400;
    line-height: 24px;
    color: #868686;
    font-size: 15px;
}

.password-icon {
    position: absolute;
    left: 15px;
}

.password-closed-eye,.password-open-eye {
    cursor: pointer;
    position: absolute;
    right: 16px;
    transition: opacity 0.2s ease;
}

.email-icon-and-input-container, .password-icon-and-input-container {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 390px;
    height: 50px;
    border-radius: 10px;
    background: #303030;
    /* margin-bottom: 20px; */
}

#email-error-message {
    color: #DC1F1F;
}

.toastify {
    border-radius: 6px!important;
    font-size: .875rem;
    /* font-weight: 400; */
    line-height: 14px;
    color: #c9c951;
    position: fixed;
    z-index: 11111 !important;
    font-family: Nunito Sans;
}

.danger-toast {
    border: 1px solid #FFCB04!important;
    background: #242328!important;
    color: #ffffff!important;
    display: flex!important;
    gap: 5px;
    line-height: 16px;
}

.danger-toast .toast-close {
    color: #606b85!important;
    opacity: 1!important;
    align-self: flex-start;
}

