* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(22,163,74,0.14), transparent 36%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    color: #111827;
    min-height: 100vh;
}

.reset-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 22px;
}

.reset-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(17,24,39,0.09);
}

.reset-logo {
    color: #111827;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.reset-logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 10px 24px rgba(22,163,74,0.20);
}

.reset-logo strong {
    font-size: 1.28rem;
    font-weight: 900;
}

.reset-card h1 {
    font-size: 1.85rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.reset-subtitle {
    color: #64748b;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reset-alert {
    display: none;
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.88rem;
}

.reset-alert.show {
    display: block;
}

.reset-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.reset-alert.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.reset-form {
    display: grid;
    gap: 14px;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field label {
    color: #111827;
    font-weight: 850;
    font-size: 0.92rem;
}

.form-field input {
    width: 100%;
    height: 52px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0 14px;
    background: white;
    color: #111827;
    outline: none;
    font: inherit;
    transition: 0.25s ease;
}

.form-field input:focus {
    border-color: #86efac;
    box-shadow: 0 0 0 4px rgba(22,163,74,0.10);
}

.reset-btn {
    min-height: 54px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    cursor: pointer;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 26px rgba(22,163,74,0.22);
    transition: 0.25s ease;
}

.reset-btn:hover {
    transform: translateY(-1px);
}

.reset-btn:disabled {
    cursor: not-allowed;
    opacity: 0.75;
    transform: none;
}

.reset-footer {
    margin-top: 18px;
    text-align: center;
}

.reset-footer a {
    color: #15803d;
    text-decoration: none;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 560px) {
    .reset-page {
        padding: 14px;
    }

    .reset-card {
        border-radius: 24px;
        padding: 24px;
    }

    .reset-card h1 {
        font-size: 1.55rem;
    }
}
