/* ============================================
   Login Page - Standalone CSS
   ============================================ */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1929 0%, #050d18 100%);
    padding: 2rem;
}

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

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

.auth-card-icon {
    width: 56px;
    height: 56px;
    background: #3b82f6;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.auth-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a1929;
    margin-bottom: 0.25rem;
}

.auth-card-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
}

.toggle-password {
    cursor: pointer;
}

.toggle-password:hover {
    color: #3b82f6;
}
