/* public/assets/css/auth.css */
body {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-header h2 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.auth-header p {
    color: #6b7280;
    margin-bottom: 0;
}

.auth-logo {
    height: 48px;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.35rem;
    display: block;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #6b7280;
}

.auth-footer a {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 500;
}
