body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    text-align: center;
    margin: 0;
    padding: 0;
}

.header-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.header {
    background-color: white;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    width: 100%;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 10px;
}

.header-subtext {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

.logo {
    width: 150px;
}

.banner {
    max-width: 60%;
    height: auto;
}

.portal-text {
    font-size: 20px;
    color: #003366;
    font-weight: bold;
    white-space: nowrap;
}

.content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 20px; /* espace entre les colonnes */
}

.login-container {
    width: 60%;
    max-width: 500px;
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.side-panel {
    width: 30%;
    margin-left: 20px;
}

.info-box {
    background-color: #60c5b9;
    color: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.subtitle {
    font-size: 18px;
    color: grey; /* Gris */
    font-weight: bold;
    text-align: center;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

input {
    width: calc(100% - 16px);
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    width: 100%;
    padding: 10px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 16px;
}
.submit {
    width: 100%;
    padding: 10px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 16px;
}

button:hover {
    background: #002244;
}

.links a {
    display: block;
    text-decoration: none;
    color: #003366;
    margin-top: 10px;
}

.error {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.error-mdp {
    color: red;
    font-weight: bold;
    margin-bottom: 6px;
}
.adherer{
    text-transform: uppercase !important
}
.lien-ouiform{
    color: black;
    font-weight: bold;
}

/* --- Bloc Cybersécurité (Style cadre orange) --- */

.cyber-box {
    background-color: #dbf4fd;  /* Bleu ciel très clair */
    /*border: 3px solid #f68e56;  /* La bordure ORANGE caractéristique */
    padding: 20px;              /* Espace intérieur */
    text-align: center;         /* Texte centré comme sur l'image */
    color: #000;                /* Texte noir par défaut */
    margin-bottom: 20px;
    /* border-radius: 0; */     /* Enlevez les commentaires si vous voulez des coins carrés */
}

/* Le titre avec les icônes */
.cyber-title {
    color: #003366;             /* Bleu foncé France Travail */
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 15px;

    /* Centrage et alignement des icônes */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;                  /* Espace entre les images et le texte */
}

/* Taille des icônes (Triangle et Ordi) */
.cyber-title img {
    height: 45px;               /* Ajustez selon la taille réelle de vos images */
    width: auto;
}

/* Texte standard (noir) dans la boîte */
.cyber-box p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #000;
}

/* Textes importants (ROUGE et GRAS) */
.cyber-box .important {
    color: #ed1c24;            /* Rouge vif */
    font-weight: bold;
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;            /* Assure que chaque bloc important va à la ligne */
}

/* Signature en bas */
.cyber-box .signature {
    margin-top: 20px;
    color: #333;
    font-size: 13px;
}

/* Bas de notice */
.cyber-box .signature {
    margin-top: 15px;
    color: #444;
}

.cyber-box .cyber-noir {
    color: black;
}


