/* Estilos específicos para a página de login */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--bg-light);
    margin: 0;
    padding: 0;
}

.login-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo h1 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 2.5rem;
}

.logo p {
    color: var(--text-secondary);
    margin-top: 0;
    font-size: 0.9rem;
}

.divider {
    margin: 25px 0;
    position: relative;
    text-align: center;
}

.divider span {
    background-color: white;
    padding: 0 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
    z-index: 0;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #444;
    cursor: pointer;
    transition: background-color 0.3s;
}

.google-btn:hover {
    background-color: var(--bg-light);
}

.google-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.error {
    background-color: #ffebee;
    color: var(--danger-color);
    padding: 10px;
    border-radius: 4px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #999;
}