/* login.css - Estilos da página de login */

body.login-page {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.login-box h1 {
    color: #1e293b;
    margin-bottom: 30px;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
}

.login-box .fa-futbol {
    font-size: 40px;
    color: #4f46e5;
    margin-bottom: 15px;
}

.google-btn {
    background: #4285f4;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.google-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
}
