﻿/* index.css — login page unique styles only */

/* ============================================
   Login Page Body
   ============================================ */
body.login-page-body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
    margin: 0;
}


/* ============================================
   Login Card Container
   ============================================ */
.login-container {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    text-align: center;
    width: 100%;
    max-width: 450px;
}

.login-container > img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 25px;
}

.login-title {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    font-family: 'Merriweather', serif;
}

.login-secure {
    font-size: 0.95em;
    margin-bottom: 25px;
    color: #555;
}


/* ============================================
   Google Sign-In Button
   ============================================ */
.google-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    height: 40px;
    border: 1px solid #747775;
    border-radius: 4px;
    background-color: #ffffff;
    color: #1f1f1f;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .3s, box-shadow .3s;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.google-login-button:hover {
    background-color: #f7fafe;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.google-login-button:active {
    background-color: #f0f5fe;
}

.google-login-button svg {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}


/* ============================================
   Footer Override (fixed at bottom for login page)
   ============================================ */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}