body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

h1{
    text-align: center;
    position: absolute;
    width: 100%;
    font-size: 35px;
    color: rgb(255, 140, 0);
}

.nouveau_client_ou_admin{
    text-decoration: underline;
    margin-left: 30%;
    color: rgb(255, 140, 0);
}

.new-client select {
    max-width: 100%;
}

label{
    text-decoration: underline;
}

table {
    margin-left: auto;
    margin-right: auto;
}

input{
    text-align: left;
    padding : 0px 40px;
}

header{
    width: 100%;
    height: 90px;
    background-color: rgb(35, 35, 35);
    display: flex;
    position: relative;
    border: 1px solid rgb(230, 230, 230);
    box-shadow: inset 2px 2px 2px rgb(222, 222, 222), inset -2px -2px 2px rgb(222, 222, 222);
}

footer{
    position: relative;
    bottom: 2%;
    text-align: center;
    block-size: 35px;
}

.form-container {
    display: flex;
    justify-content: space-between;
}

.new-client, .admin {
    width: 45%;
}

#client_supprimer_compte { 
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
}

#deja_client {
    text-decoration: underline;
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    color: rgb(0, 0, 0);
}

#bouton_se_connecter{
    text-align: center;
}

#bouton_retour {
    font-size: 130%;
    margin-top: 30px;
    margin-left: 10px;
    color: rgb(226, 129, 10);
    display: flex;
    align-items: center;
    z-index: 1;
    height: 20%;
}

#bouton_deconnexion {
    font-size: 130%;
    position: relative;
    margin: 1.5%;
    margin-left: auto;
    color: rgb(226, 129, 10);
    top: 10%;
}

#titre_client{
    text-align: center;
    font-size: 2em;
}

#client_body {
    font-size: 1em;
}

table td{
    font-size: 1.4em;
    border-top: 2px solid black;
    border-bottom: 3px solid black;
}

/* C'est ce qui supprime les espaces blancs sur les côtés.*/
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.user-selection h2 {
    text-align: center;
}

.form-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
}

.new-client {
    border-right: 2px solid #333;
    padding-left: 12%;
    padding-right: 15%;
    width: 22%;
}

.admin {
    padding-left: 20px;
    width: 45%;
}

.user-selection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 360px;
    max-width: 90%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
}

.login-form label {
    align-self: flex-start;
    margin-bottom: 6px;
}

.login-form input {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    margin-bottom: 12px;
}

.login-form button {
    align-self: center;
    padding: 8px 16px;
    cursor: pointer;
}