/* --- Reset e Configuração Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #444;
    line-height: 1.6;
}

body {
    display: grid;
    place-items: center;
    padding: 20px;
    /* Fundo gradiente suave e moderno */
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf3 100%);
}

/* --- Container do Login --- */
.login-container {
    width: 100%;
    display: grid;
    place-items: center;
}

/* --- Card de Login --- */
.login-card {
    width: 100%;
    max-width: 450px; /* Limita a largura em desktops */
    background-color: #ffffff;
    border-radius: 16px; /* Cantos arredondados */
    padding: 40px;
    text-align: center;
    /* Sombra suave e moderna */
    box-shadow: 0 10px 30px rgba(0, 50, 100, 0.08);
    border: 1px solid #e7eaf3;
    /* Efeito suave ao carregar */
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logomb img {
    max-width: 100px;
    height: auto;
    margin-bottom: 24px;
}

.login-card h1 {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    color: #222;
    margin-bottom: 32px;
}

/* --- Botão Google Moderno --- */
.google-login {
    width: 100%;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Espaço entre o logo e o texto */
    
    width: 100%;
    padding: 12px 16px;
    
    font-size: 1rem; /* 16px */
    font-weight: 500;
    color: #333; /* Cor do texto */
    
    background-color: #ffffff;
    border: 1px solid #dadedf; /* Borda padrão do Google */
    border-radius: 8px; /* Cantos arredondados suaves */
    
    text-decoration: none;
    cursor: pointer;
    
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.btn-google:hover {
    background-color: #f8f9fa; /* Leve mudança ao passar o mouse */
    border-color: #c6c6c6;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.btn-google:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

/* --- Link de Criar Conta --- */
.create-account {
    margin-top: 24px;
    font-size: 0.875rem; /* 14px */
    color: #555;
}

.create-account a {
    color: #007bff; /* Cor de link padrão */
    font-weight: 500;
    text-decoration: none;
}

.create-account a:hover {
    text-decoration: underline;
}

/* --- Responsividade --- */
@media (max-width: 480px) {
    body {
        padding: 15px; /* Menos preenchimento em telas pequenas */
    }

    .login-card {
        padding: 24px; /* Menos preenchimento interno no card */
    }

    .login-card h1 {
        font-size: 1.25rem; /* 20px */
        margin-bottom: 24px;
    }

    .btn-google {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
}