:root {
    --qiq-bg: #E4E7EC;
    --qiq-card: #0B1C2D;
    --qiq-primary: #C9A24D;
    --qiq-primary-hover: #b48d3b;
    --qiq-text: #ffffff;
    --qiq-text-muted: #ffffff;
    --qiq-border: #2d3748;
}

body {
    background-color: var(--qiq-bg);
    color: var(--qiq-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    margin-bottom:0px;
    overflow-x: hidden;
}

/* Subtle Background Glows */
.bg-glow-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.bg-glow-2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Card Styling */
.login-card {
    background-color: var(--qiq-card);
    border: 1px solid var(--qiq-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 450px;
    width: 100%;
}

.subtitle {
    color: #888a8d;
    font-size: 0.9rem;
}

.form-label {
    color: var(--qiq-text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--qiq-border);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

    .form-control:focus {
        box-shadow: 0 0 0 4px rgba(15, 31, 81, 0.15);
        color: white;
    }

.btn-primary {
    background-color: var(--qiq-primary);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
}

    .btn-primary:hover {
        background-color: var(--qiq-primary-hover);
        transform: translateY(-1px);
    }

.btn-outline-secondary {
    border: 1px solid var(--qiq-border);
    background: transparent;
    color: var(--qiq-text);
    padding: 0.75rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

    .btn-outline-secondary:hover {
        background-color: rgba(255, 255, 255, 0.05);
        border-color: var(--qiq-text-muted);
    }

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--qiq-text-muted);
    margin: 1.5rem 0;
    font-size: 0.85rem;
}

    .divider::before, .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid var(--qiq-border);
    }

    .divider:not(:empty)::before {
        margin-right: 1rem;
    }

    .divider:not(:empty)::after {
        margin-left: 1rem;
    }

.form-check-input {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--qiq-border);
}

    .form-check-input:checked {
        background-color: var(--qiq-primary);
        border-color: var(--qiq-primary);
    }
