/* login_style.css */

:root {
    --bg-color: #f4f7f6;
    --card-bg: #ffffff;
    --primary-blue: #0d6efd;
    --text-main: #333333;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
}

body {
    background-color: var(--bg-color);
    height: 100vh;
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.login-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 420px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.login-card.processing {
    opacity: 0.6;
    pointer-events: none;
    transform: scale(0.98);
}

.brand-icon {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Subtle animation for the brand icon */
.brand-icon i {
    filter: drop-shadow(0 4px 6px rgba(13, 110, 253, 0.2));
}

h2 {
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Center the Google Button */
.g_id_signin {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-text {
    margin-top: 2.5rem;
    font-size: 0.7rem;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}