/* AUTH UI VARIABLES */
/* Base variables inherited from base.css */
:root {
    /* extended auth specific vars */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 20px 40px rgba(0, 50, 100, 0.08);
    --glass-shadow-hover: 0 30px 60px rgba(0, 50, 100, 0.12);
}

/* AUTH PAGE BACKGROUND */
.auth-page-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--auth-bg-gradient);
    position: relative;
    padding: 2rem;
    font-family: 'Inter', sans-serif;
}

/* GLASS CARD CONTAINER */
.auth-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    /* Default width */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
    position: relative;
}

.auth-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow-hover);
}

/* AUTH HEADER */
.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header img {
    height: 60px;
    margin-bottom: 1rem;
    display: inline-block;
}

.auth-header h2,
.auth-header h1 {
    font-size: 1.8rem;
    color: #1e293b;
    /* Slate-800 */
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.auth-header p {
    color: #64748b;
    /* Slate-500 */
    font-size: 0.95rem;
}

/* FORM ELEMENTS OVERRIDES */
.form-label {
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.form-input:focus {
    border-color: #0066CC;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #0066CC 0%, #4D94FF 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-primary:active {
    transform: scale(0.98);
}