:root {
    --primary-color: #0d6efd;
    --dark-bg: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-light: #f8fafc;
}

body.login-page {
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-light);
    margin: 0;
    overflow: hidden;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    z-index: 10;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.brand-logo {
    text-align: center;
    margin-bottom: 30px;
}

.brand-logo h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #94a3b8;
}

.user-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.user-badge i {
    margin-right: 10px;
    color: #60a5fa;
}

.user-badge span {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.form-group {
    margin-bottom: 20px;
}

.form-control-custom {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    padding: 12px 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.btn-premium {
    background: linear-gradient(to right, #3b82f6, #2563eb);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-premium:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    text-align: center;
}

/* Background decorator */
.bg-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
}

.blob-1 {
    top: -100px;
    right: -100px;
}

.blob-2 {
    bottom: -100px;
    left: -100px;
}