.management-card {
    background: linear-gradient(45deg, #191970, #4682B4); /* Azul meia-noite para azul aço */
    color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px; /* Aproximadamente um terço da largura da tela em um desktop */
    height: 50vh;
    
    position: relative; /* Necessário para o conteúdo interno */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.management-card h3 {
    margin-bottom: 1rem;
}

.management-card label {
    color: #fff;
    text-align: center;
}

.management-card .mb-3 {
    margin-bottom: 1rem;
}

.management-card input {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    text-align: center;
}

.management-card input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.management-btn {
    background: linear-gradient(45deg, #6f42c1, #8a63d1); /* Roxo gradiente */
    border: none;
    color: #fff;
    font-weight: bold;
    transition: transform 0.2s ease;
    text-align: center;
}

.management-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.transparent-main-content {
    background-color: rgba(255, 255, 255, 0.05) !important; /* Branco quase transparente */
    box-shadow: none !important;
}