html, body {
    min-height: 100%;
    background: #000;
}

body.password-force-page {
    min-height: 100vh;
    margin: 0;
    color: #fff;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.35)),
        url('https://images.unsplash.com/photo-1478720568477-152d9b164e63?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.password-reset-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.password-reset-card {
    width: 100%;
    max-width: 460px;
    padding: 32px;
    background: #111827;
    border: 1px solid #374151;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.password-reset-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.password-reset-desc {
    font-size: .92rem;
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.6;
}

.password-reset-group {
    margin-bottom: 16px;
}

.password-reset-label {
    display: block;
    font-size: .75rem;
    color: #6b7280;
    margin-bottom: 6px;
    font-weight: 500;
}

.password-reset-input {
    width: 100%;
    background: #000;
    border: 1px solid #4b5563;
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-size: .95rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.password-reset-input:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 1px #ef4444;
}

.password-reset-input.is-invalid {
    border-color: #f87171;
}

.password-reset-submit {
    width: 100%;
    background: #fff;
    color: #000;
    border: 0;
    border-radius: 8px;
    padding: 13px 16px;
    font-weight: 700;
    font-size: .95rem;
    transition: background-color .2s ease, transform .15s ease;
    margin-top: 4px;
}

.password-reset-submit:hover {
    background: #e5e7eb;
}

.password-reset-submit:active {
    transform: scale(0.99);
}

.password-reset-error {
    display: block;
    margin-top: 6px;
    font-size: .82rem;
    color: #fca5a5;
}

.password-reset-back {
    margin-top: 16px;
    text-align: center;
}

.password-reset-back a {
    color: #9ca3af;
    font-size: .82rem;
    text-decoration: none;
}

.password-reset-back a:hover {
    color: #fff;
    text-decoration: underline;
}

.alert {
    font-size: .88rem;
    border-radius: 8px;
}

@media (max-width: 576px) {
    .password-reset-page {
        padding: 16px;
    }

    .password-reset-card {
        padding: 22px 18px;
    }
}