.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
}

.custom-hover-button:hover {
    background-color: #FFAA17 !important;
    color: #004A6F !important;
}

.centered-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form-wrapper {
    border: 2px solid #004A6F;
    border-radius: 20px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.justify-content-center {
    display: flex;
    justify-content: center;      /* centra orizzontalmente */
    align-items: center;
}

.custom-hover-button {
    background-color: #004A6F !important;
    color: white !important;
}

.custom-hover-button:hover {
    background-color: #FFAA17 !important;
    color: #004A6F !important;
}

.card-body {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.wider-input {
    width: auto; /* fai l'input al 100% del contenitore */
}

.header-spacer {
    height: 140px; /* Assicura che il contenuto non si sovrapponga all'header */
}

.background {
    background-color: #004A6F !important;
    width: 100%;
    padding: 0;
    margin: 0;
}

.background-top-bar {
    width: 100%;
    height: 110px; /* o quanto vuoi */
    background-color: #004A6F;
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .login-form-wrapper {
        padding: 20px;
        border-radius: 10px;
        margin: 20px;
    }

    .wider-input {
        width: 100%;
    }

    .card-body {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}
