/* RESET BASE */
body {
    background: #f0f2f5;
}

/* CONTENITORE */
.wrapper-identita {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    margin: 80px auto;
    width: 95%;
    max-width: 1800px;
}

/* CARD */
.card-auth {
    flex: 1 1 0;
    min-width: 600px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e3e8ed;
    border-top: 8px solid #0056b3;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.card-auth:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* TITOLI */
.card-auth h2 {
    color: #0056b3;
    font-weight: 800;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
}

/* TESTO */
.subtitle-auth {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
    min-height: 100px;
}

/* BOTTONI */
.btn-container {
    text-align: center;
    margin-bottom: 30px;
}

/* FOOTER */
.info-section {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 25px;
    text-align: center;
}

/* LINK */
.link-blue {
    color: #0056b3;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
}

.link-blue:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .wrapper-identita {
        flex-direction: column;
        max-width: 800px;
    }

    .card-auth {
        min-width: unset;
        width: 100%;
    }
}
/* RIMUOVE SFONDO BIANCO */
#page-auth-oidc-authidp div[role="main"] {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
/* ICONA BLU LINK ESTERNO */
.link-blue i {
    margin-left: 6px;
    font-size: 0.95rem;
}