/* Blue background and centered box */
body {
    background-color: #083b54;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    font-family: Roboto, sans-serif;
}

.submit_button {
    background-color: #00EBB8;
    border-radius: 6px;
    border: 2px solid rgba(0,0,0,0.1);
    color: white;
    padding: 8px 12px 10px 18px;
    text-align: center;
    text-decoration: none;
    font-size: 100%;
    margin-top: 10px;
    cursor: pointer;
    width: 280px;
}

    .box {
        padding: 20px;
        font-family: sans-serif, Verdana;
        background-color: #f1f4f8;
        text-align: center;
        border: 1px solid;
        border-radius: 5px;
        min-height: 2em;
        width: 280px;
    }

.title {
    font-family: Roboto, sans-serif;
    margin-top: 12%;
    color: #FFFFFF;
}

.title h1 {
    display: inline-block; /* Permet au h1 de se comporter comme un bloc centré */
    text-align: center;    /* Force le centrage du texte à l'intérieur du h1 */
}

.subtitle {
    text-align: left ;
    font-family: Roboto, sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #7F8FA4;
}

    .square_input {
        background-clip: padding-box;
        background-color: #FFFFFF;
        border-radius: 6px;
        border: 2px solid #B2C2C4;
        box-sizing: border-box;
        color: #364A5D;
        cursor: text;
        direction: ltr;
        display: inline-block;
        font-family: Roboto, sans-serif;
        font-size: 14px;
        font-stretch: 100%;
        font-weight: 400;
        height: 44px;
        line-height: 20.538px;
        outline-color: #56DCC6;
        overflow-wrap: break-word;
        padding-bottom: 8px;
        padding-left: 12px;
        padding-right: 12px;
        padding-top: 8px;
        text-align: start;
        text-size-adjust: 100%;
        text-transform: none;
        touch-action: manipulation;
        transition-delay: 0s, 0s, 0s;
        transition-duration: 0.25s, 0.25s, 0.25s;
        transition-property: border, color, background-color;
        transition-timing-function: linear, linear, linear;
        width: 100%;
        word-spacing: 0px;
        writing-mode: horizontal-tb;
    }
