body {
    font-family: sans-serif;
    margin: 0;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

label, input {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.hidden {
    display: none;
}

.FormPage {
    background-color: #f6f6f6;
    padding: 12vh 12px 0;
    height: 100vh;
}

.FormPage .container {
    background-color: white;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    width: 100%;
}

.FormPage input {
    border: none;
    padding: 8px 16px;
    border-bottom: 1px solid #ddd;
    font-size: 26px;
    margin: 32px auto;
    outline: none;
    display: block;
    max-width: 100%;
}
.FormPage label {
    color: #666;
}

.Facture_GenericError {
    color: #001f3f;
    font-size: 20px;
    position: absolute;
    width: 100%;
    text-align: center;
    height: 300px;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
}

.Link, a {
    color: #0074D9;
    cursor: pointer;
    text-decoration: underline;
}