.formulaire label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

.formulaire input,
.formulaire textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formulaire input[readonly] {
    background-color: lightgray;
    color: black;
}

.formulaire select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formulaire button,
.formulaire-otp button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.formulaire button:hover,
.formulaire-otp button:hover {
    background-color: #0056b3;
}

/* Slider iOS Style */
.formulaire .switch {
    position: relative;
    display: inline-block;
    width: 6vh;
    height: 3.4vh;
    margin: 1vh 0;
}

.formulaire .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.formulaire .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 3.4vh;
}

.formulaire .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%;
}

.formulaire input:checked + .slider {
    background-color: #183B50;
}

.formulaire input:checked + .slider:before {
    transform: translateX(2.6vh);
}

.formulaire .slider:active:before {
    width: 3vh;
}


.formulaire-otp label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

.formulaire-otp input {
    display: block;
	width: 80%;
	margin: auto;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	letter-spacing:15px;
	text-align:center;
	font-size:25px
}
