

#login-card {
    background-color: #272525;
    color: white;
    text-align: center;
}


/* Colore di sfondo */
.custom-bg {
    background-color: #272525 !important;
}

/* Modifica il colore della card */
.custom-card {
    background-color: #272525;
    color: white;
    width: 350px;
    height: 300px;
}

/* Pulsante personalizzato */
.custom-btn {
    background-color: #EB2F5B;
    border-color: #EB2F5B;
    color: white;
    font-weight: bold;
}

.custom-btn:hover {
    background-color: #d9204e;
    border-color: #d9204e;
}

/* Colore del testo nei form */
.form-control {
    background-color: #1e1e1e;
    color: white;
    border: 1px solid #EB2F5B;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Cambia colore ai testi secondari */
.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

