/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Page background */
body {
    min-height: 100vh;
    background: linear-gradient(180deg, #f9fafb, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login container */
.auth-container {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Header */
.auth-header {
    padding: 32px 32px 16px;
    text-align: center;
}

.auth-header h1 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
}

.auth-header p {
    margin-top: 8px;
    font-size: 14px;
    color: #6b7280;
}

/* Form */
.auth-body {
    padding: 24px 32px 32px;
}

.auth-group {
    margin-bottom: 18px;
}

.auth-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #374151;
}

.auth-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: 0.15s;
}

.auth-input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79,70,229,0.15);
}

/* Remember + forgot */
.auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
}

.auth-row a {
    color: #4f46e5;
    text-decoration: none;
}

.auth-row a:hover {
    text-decoration: underline;
}

/* Button */
.auth-button {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #4f46e5;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.15s;
}

.auth-button:hover {
    background: #4338ca;
}

/* Footer */
.auth-footer {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    padding: 16px 32px 24px;
    border-top: 1px solid #f3f4f6;
}

.auth-footer a {
    color: #4f46e5;
    text-decoration: none;
}
.auth-footer a:hover {
    text-decoration: underline;
}
