:root {
    --bg-main: #F5F7FB;
    --bg-card: #FFFFFF;
    --primary: #3B82F6;
    --primary-hover: #2563EB;

    --text-main: #111827;
    --text-body: #374151;
    --text-muted: #6B7280;

    --border-light: #E5E7EB;
    --danger: #EF4444;
    --success: #16A34A;
}

/* * {
    box-sizing: border-box;
    font-family: "Inter", system-ui, sans-serif;
} */

.main-content {
    background: var(--bg-main);
    margin: 0;
    display: flex;
    justify-content: center;
    /* align-items: center;
    min-height: 100vh; */
}

.reset-card {
    background: var(--bg-card);
    width: 100%;
    max-width: 420px;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
}

.desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    display: block;
    margin-bottom: 6px;
}

.error-box {
    display: none;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: var(--danger);
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 16px;
}

input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

input::placeholder {
    color: #9CA3AF;
}

input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

button {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

button:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.footer-text {
    margin-top: 16px;
    font-size: 13px;
    text-align: center;
    color: var(--text-muted);
}

.footer-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}