body {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 10px;
    font-family: Arial, sans-serif;
}

h1 {
    font-size: 3rem;
    margin: 15px 0 15px 0;
}

label {
    font-weight: bold;
    
}

#registration-status {
    margin-top: 1rem;
    display: none; /* Masqué par défaut */
}

#success {
    display: none; /* Masquer par défaut */
    color: #155724; /* Couleur du texte vert foncé */
    background-color: #d4edda; /* Fond vert clair */
    border: 1px solid #c3e6cb; /* Bordure verte */
    padding: 10px; /* Espacement interne */
    margin-top: 10px; /* Espacement au-dessus */
    border-radius: 5px; /* Coins arrondis */
    font-family: Arial, sans-serif; /* Police de caractères */
}

#error {
    display: none; /* Masquer par défaut */
    color: #ff0000; /* Couleur du texte rouge */
    background-color: #ffe6e6; /* Fond légèrement rouge */
    border: 1px solid #ff0000; /* Bordure rouge */
    padding: 10px; /* Espacement interne */
    margin-top: 10px; /* Espacement au-dessus */
    border-radius: 5px; /* Coins arrondis */
    font-family: Arial, sans-serif; /* Police de caractères */
}

#registration-intro {
    text-align: center;
    font-size: 1rem;
    font-weight: 100;
    line-height: 24px;
    color: #313131;
    margin: 1rem 0;
    font-family: 'Open Sans', sans-serif;
}

#servicer {
    font-size: 1rem;
    font-weight: 100;
    line-height: 24px;
    color: #313131;
    margin: 1rem 0;
    font-family: 'Open Sans', sans-serif;
}

.orange {
    color: #f04924;
}

.btn-sq {
    font-size: 1.12rem;
    cursor: pointer;
    border: none;
    background-color: #f04924;
    color: white;
    padding: 12px 65px;
    border-radius: 0px;
}

.input-text {
    border: solid 1px #ced4da;
    border-radius: 3px;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
    height: 50px;
    color: #495057;
    margin: 1rem 0;
    padding: .375rem .75rem;
    min-width: 200px;
}

.ibm-plex-serif-bold {
    font-family: "IBM Plex Serif", serif;
    font-weight: 700;
    font-style: normal;
  }

.ibm-plex-serif-semibold {
    font-family: "IBM Plex Serif", serif;
    font-weight: 600;
    font-style: normal;
  }
  
