/* LOGIN PAGE */

.login-page {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    font-family: var(--font-body, 'Segoe UI', sans-serif);
    color: #f5f1e8;
}

/* Background image layer */
.login-background {
    position: fixed;
    inset: 0;
    background: url('https://faemire.com/uploads/2026/03/20260317_203522_3a0a.webp') center center / cover no-repeat;
    z-index: 0;
}

/* Dark overlay for readability */
.login-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 6, 0.65);
}

/* Glass login card */
.glass-box {
    position: relative;
    z-index: 2;

    max-width: 800px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%) scale(0.95);

    padding: 30px;

    background: rgba(25, 20, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;

    backdrop-filter: blur(5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);

    text-align: center;

    opacity: 0;
    transition: all 0.6s ease;
}

/* Animate in */
.glass-box.show {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* Title */
.glass-box h1 {
    margin-top: 0;
    font-size: 28px;
    letter-spacing: 0.5px;
}

/* Subtitle */
.subtitle {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 20px;
}

/* Buttons */
#login-buttons {
    margin-top: 20px;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 18px;

    background: linear-gradient(135deg, #3a5f3a, #4f7a4f);
    color: #fff;
    text-decoration: none;

    border-radius: 8px;
    font-weight: 500;

    transition: all 0.2s ease;
}

.login-btn:hover {
    background: linear-gradient(135deg, #4f7a4f, #6a9c6a);
    transform: translateY(-2px);
}

/* Icon */
.oauth-icon {
    height: 18px;
}

/* Status message */
.status-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(120, 40, 40, 0.9);
    padding: 10px 20px;
    border-radius: 6px;
    z-index: 10;
}

.logo-image {
max-width:600px;
min-width:300px;
height: auto;
    filter: drop-shadow(0 0 6px rgba(255, 180, 80, 0.35))
            drop-shadow(0 0 14px rgba(255, 140, 40, 0.25));
}
