/* Mise en page de l'écran de connexion en tant qu'administrateur */

:root {
    --middle_blue : #037285;
    --dark_blue : #30344C;
    --light_blue: #1AA4BA;
    --orange: #F39200;
    --green: #94C11F;
    --red: #BA334E;
    --grey_blue: #94B2C3;
    --type_service : rgb(208, 227, 238);
}

#login_failed {
    background-color: var(--red);
    color: white;
    padding: 15px;
    text-align: center;
}

.connexion {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#connexion_card {
    border: 1px solid black;
    border-radius: 10px;
    width: 35%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

#connexion_card form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#connect_title {
    font-size: x-large;
    font-weight: bold;
    color: var(--middle_blue);
}

button {
    color: white;
}

#login_display {
    background-color: var(--green);
    color: white;
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
}

#deconnexion {
    background-color: #5f7074;
    color: white;
    border-color: #5f7074;
    font-size: medium;
    height: 30px;
    transition: all ease 0.2s;
}

#deconnexion:hover {
    background-color: #d1d0d0;
    border-color: #d1d0d0;
    color: black;
    transition: all ease 0.2s;
}

#deconnexion_form {
    height: 20px;
}