* {
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-box {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 30px 32px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.auth-box h2 {
    margin: 0 0 20px;
    text-align: center;
    font-size: 22px;
    color: #111827;
}

.auth-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-box input {
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}

.auth-box input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.auth-box button {
    margin-top: 8px;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.auth-box button:hover {
    background: #1e40af;
}

.auth-box button:active {
    transform: translateY(1px);
}

.auth-box p {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
    color: #374151;
}

.auth-box a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.auth-box a:hover {
    text-decoration: underline;
}
.auth-box {
            width: 420px;
            background: #fff;
            padding: 32px;
            border-radius: 14px;
            box-shadow: 0 12px 30px rgba(0,0,0,.15);
        }
        .auth-box h2 {
            text-align: center;
            margin-bottom: 28px;
            color: #003399;
        }
/* Error message */
.error-box {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}
