/* Forget Password Page */
.forget-password-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    background: #fff;
}

.forget-password-card {
    max-width: 468px;
    width: 100%;
    background: #FAFAFA;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    border: 1px solid #F2F2F2;
}

.forget-password-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 8px;
    font-family: "DM Sans";
}

.forget-password-desc {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 22px;
    line-height: 135%
}

/* Send Reset Link Button */
.btn-send-link {
    letter-spacing: 1.3px;
    background: var(--black-color);
    border: none;
    padding: 12px 16px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 500;
    line-height: 100%;
    &:hover {
        background: var(--black-color);
    }
}

.back-to-login {
    font-weight: 700;
    background: transparent;
    border: none;
    padding: 0;
    color: var(--black-color);
}
