* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #9fd6ff 0%, #d8eeff 55%, #eef7ff 100%);
}

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

.forgot-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    padding: 28px;
    box-shadow:
        0 26px 50px rgba(30, 64, 175, 0.16),
        0 8px 20px rgba(15, 23, 42, 0.08);
}

h1 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #0f172a;
}

.helper {
    margin-top: 0;
    margin-bottom: 14px;
    color: #334155;
    font-size: 14px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #f8fbff;
}

select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #f8fbff;
}

button {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.forgot-message {
    margin-top: 0;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
}

.forgot-message[data-type="success"] {
    background: #ecfdf3;
    color: #166534;
}

.forgot-message[data-type="error"] {
    background: #fef2f2;
    color: #991b1b;
}

.back-link {
    margin-bottom: 0;
    margin-top: 12px;
    text-align: center;
}

.back-link a {
    color: #1d4ed8;
    text-decoration: none;
}
