/*Formualire de la page LOGIN */

.formulaire-login {
    max-width: 600px;
    margin: 0 auto;
	padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.formulaire-login h2 {
    text-align: center;
    color: #333;
}

.formulaire-login label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

.formulaire-login input,
.formulaire-login textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formulaire-login input[readonly] {
	background-color: lightgray;
	color: black;
}

.formulaire-login select{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formulaire-login button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.formulaire-login button:hover {
    background-color: #0056b3;
}


.agendaChoixDate label {
    display: none;
    margin: 10px 0 5px;
    color: #555;
}

.agendaChoixDate input {
	flex: 1; /* L'input prend tout l'espace disponible */
	padding: 10px;
	margin-right: 10px; /* Espacement entre l'input et le bouton */
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.agendaChoixDate button {
	padding: 10px;
	background-color: white;
	font-family: 'Helvetica', sans-serif;
	color: black;
	border-radius: 8px;
	border: 1px solid #183B50;
}

.agendaChoixDate button:hover {
	background-color: #183B50;
	color: #ffffff; /* Correction de "colore" en "color" */
}

.formPopup label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

.formPopup input,
.formPopup textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formPopup input[readonly] {
    background-color: lightgray;
    color: black;
}

.formPopup select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formPopup button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.formPopup button:hover {
    background-color: #0056b3;
}

/* Slider iOS Style */
.formPopup .switch {
    position: relative;
    display: inline-block;
    width: 5vh;
    height: 2.8vh;
    margin: 1vh 0;
}

.formPopup .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.formPopup .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 2.8vh;
}

.formPopup .slider:before {
    position: absolute;
    content: "";
    height: 2.2vh;
    width: 2.2vh;
    left: 0.4vh;
    bottom: 0.4vh;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.formPopup input:checked + .slider {
    background-color: #183B50;
}

.formPopup input:checked + .slider:before {
    transform: translateX(2vh);
}

.formPopup .slider:active:before {
    width: 2.5vh;
}


.formPopup-nomargin label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

.formPopup-nomargin input,
.formPopup-nomargin textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formPopup-nomargin input[readonly] {
    background-color: lightgray;
    color: black;
}

.formPopup-nomargin select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formPopup-nomargin button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.formPopup-nomargin button:hover {
    background-color: #0056b3;
}

/* Slider iOS Style */
.formPopup-nomargin .switch {
    position: relative;
    display: inline-block;
    width: 6vh;
    height: 3.4vh;
    margin: 1vh 0;
}

.formPopup-nomargin .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.formPopup-nomargin .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 3.4vh;
}

.formPopup-nomargin .slider:before {
    position: absolute;
    content: "";
    height: 2.6vh;
    width: 2.6vh;
    left: 0.4vh;
    bottom: 0.4vh;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.formPopup-nomargin input:checked + .slider {
    background-color: #183B50;
}

.formPopup-nomargin input:checked + .slider:before {
    transform: translateX(2.6vh);
}

.formPopup-nomargin .slider:active:before {
    width: 3vh;
}