  /* Estilos para página de login
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.logo-container {
    margin-bottom: 30px;
}

.logo-empresa {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.login-container h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.login-container p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Botão Google Estilizado */
.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: #444;
    padding: 12px 24px;
    6border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
}

.google-btn:hover {
    background: #f8f9fa;
    border-color: #4285f4;
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
    transform: translateY(-2px);
}

.google-icon {
    width: 20px;
    height: 20px;
}

/* Seção de usuário logado */
.user-info {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4285f4;
}

.user-info h2 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.user-info p {
    color: #555;
    margin: 10px 0;
}

.btn-link {
    display: flex;     /* inline-block; */   /* block; */
    flex-direction: column;
    margin: 10px auto;  /* 10px 5px; */
    padding: 10px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
    width: fit-content;
    align-items: center;       /* Alinha os itens ao centro horizontalmente */
    justify-content: center;   /* Alinha ao centro verticalmente (se o container tiver altura) */           
    text-align: center;
}

.btn-link:hover {
    background: #5a6fd6;
}

.logout-btn {
    background: #e74c3c;
}

.logout-btn:hover {
    background: #c0392b;
}

/* Responsividade */
@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }

    .login-container h1 {
        font-size: 24px;
    }
}