/* Auth forgot-password page unique styles */

.auth-password-email-page {
    padding-top: 40px;
    padding-bottom: 30px;
}

.bg-gray-50 {
    background: #f9fafb;
}

.reset-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px 32px;
}

.reset-card {
    width: 100%;
    max-width: 384px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    padding: 32px;
}

.reset-card .logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.reset-card .logo-wrap img {
    height: 48px;
    width: auto;
}

.reset-card h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.03em;
    text-align: center;
    margin: 0 0 4px;
}

.reset-card .subtitle {
    font-size: .875rem;
    color: #6b7280;
    text-align: center;
    margin: 0 0 24px;
}

.btn-send {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .875rem;
    color: #fff;
    background: linear-gradient(to right, #f97316, #ea580c);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background .15s;
    margin-top: 24px;
}

.btn-send:hover {
    background: linear-gradient(to right, #ea580c, #c2410c);
}

.btn-send:disabled {
    opacity: .7;
    cursor: default;
}

