
.login-container {
    max-width: 640px;
    margin: 100px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.button-group, .role-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

button {
    min-width:150px;
    padding: 10px;
    background-color: #4CAF50;
    border: none;
    color: white;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    margin: 2px;
}

.small-button {
    min-width:auto;
    height:auto;
}

button:hover {
    background-color: #45a049;
}

button.blue {
    background-color: dodgerblue;
}

button.blue:hover {
    background-color: deepskyblue;
}

button.red {
    background-color: #f63801;
}

button.red:hover {
    background-color: FireBrick; /* #ba2f06; */
}

.container_field_with_icon {
    display:flex;
    align-items: center;
    width:100%;
}
.div_icon {
    margin:5px;
}
.div_field {
    width:100%;
}
.bouton_toggle_div {
    color: white;
    font-size:1.5em;
    margin-top:20px;
}
.div_not_vsible {
    filter: brightness(0.8);
    background-color: transparent;
    color:black;
}
.div_vsible {
    filter: brightness(1);
    background-color: orange;
}

.toggle{
   display:none;
   padding: 5px;
}