.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #111827, #1f2937);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.auth-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.auth-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-logo img {
    max-width: 64px;
    max-height: 64px;
    object-fit: contain;
}

.auth-card h1 {
    margin: 0;
    text-align: center;
    font-size: 24px;
    color: #111827;
}

.auth-subtitle {
    text-align: center;
    color: #6b7280;
    margin: 8px 0 20px;
    font-size: 14px;
}

.auth-alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 11px 12px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
}

.auth-form .form-group {
    margin-bottom: 14px;
}

.auth-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #374151;
}

.auth-form label span {
    color: #dc2626;
}

.auth-form .form-control {
    width: 100%;
    height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 15px;
}

.auth-form .form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.auth-button {
    width: 100%;
    height: 44px;
    border: none;
    background: #2563eb;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-top: 4px;
}

.auth-button:hover {
    background: #1d4ed8;
}

.auth-note {
    margin-top: 16px;
    padding: 12px;
    border-radius: 10px;
    background: #f9fafb;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.auth-alert.success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

.auth-links {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
}

.auth-links a {
    color: #2563eb;
    font-weight: 700;
}