/* Estilos para o body com degradê */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* Degradê de roxo para azul */
    font-family: Arial, sans-serif;
}

/* Estilos para o card de login */
.login-card,
.update-card {
    background-color: rgba(255, 255, 255, 0.1); /* Fundo semi-transparente */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px); /* Efeito de desfoque no fundo */
}

.login-card h2,
.update-card h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white; /* Texto branco para contraste */
}

.login-card .logo img,
.update-card .logo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Estilos para inputs e botões */
.icon-input {
    position: relative;
}

.icon-input i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white; /* Ícones brancos */
}

.icon-input input {
    padding-left: 40px;
    background-color: rgba(255, 255, 255, 0.2); /* Fundo semi-transparente para inputs */
    border: none;
    color: white; /* Texto branco */
    border-radius: 5px;
}

.icon-input input::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Placeholder mais claro */
}

.btn-primary {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2); /* Botão semi-transparente */
    border: none;
    color: white; /* Texto branco */
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Efeito ao passar o mouse */
}

.logo{
    text-align: center;
    margin-bottom: 1rem;
}


/* Estilos para o footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: transparent; /* Fundo transparente */
    color: white; /* Letras brancas */
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between; /* Espaço entre os elementos */
    align-items: center;
    z-index: 1000; /* Garante que o footer fique acima de outros elementos */
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.form-check-input {
    margin-right: 10px;
}

.form-check-label {
    color: white;
    font-size: 0.9rem;
}

.btn-google {
    background-color: #fff;
    color: #757575;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
}

.btn-google:hover {
    background-color: #f8f8f8;
    color: #757575;
}

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

.divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: #ddd;
}

.divider-text {
    padding: 0 10px;
    color: #ddd;
    font-size: 14px;
}

.alert.alert-info {
    background-color: #e7f4ff;
    border-color: #b8daff;
    color: #004085;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}
.alert.alert-info i {
    margin-right: 8px;
}

/* Responsividade para mobile */
@media (max-width: 576px) {
    .login-card {
        background-color: transparent; /* Fundo mais transparente no mobile */
        box-shadow: none;
    }

    body {
        background: linear-gradient(135deg, #6a11cb, #2575fc); /* Mesmo gradiente do desktop */
    }

    .footer {
        position: fixed; /* Mantém o footer fixo na parte inferior */
        flex-direction: row; /* Mantém os elementos em linha */
        justify-content: space-between; /* Espaço entre os elementos */
        padding: 10px 20px; /* Padding padrão */
        background-color: rgba(0, 0, 0, 0.3); /* Fundo semi-transparente para melhor legibilidade */
    }

    .footer-left, .footer-right {
        text-align: center; /* Centraliza o texto no mobile */
    }
}