/* Estilos gerais */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

main {
    flex: 1;
}

/* Estilos para o formulário de login e registro */
.auth-form {
    max-width: 450px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0d6efd;
}

/* Estilos para o dashboard */
.dashboard-card {
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.dashboard-icon {
    font-size: 2.5rem;
    color: #0d6efd;
}

/* Cores para os diferentes status */
.status-ativo { color: #198754; }
.status-pendente { color: #fd7e14; }
.status-inativo { color: #dc3545; }

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .auth-form {
        margin: 1rem;
        padding: 1.5rem;
    }
}
