/* Feuille de style CSS minimaliste */

body {
    background-color: #022452;
    color: #fff;
	border-radius: 15px;
	padding:10px;
	box-sizing: border-box;
}

a {
    color: #fff;
}

h3 {
    color: #0de3da;
}

h4 {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
.demande_form_champ input[type="text"],
.demande_form_champ input[type="password"],
.demande_form_champ input[type="number"],
.demande_form_champ input[type="email"],
.demande_form_champ input[type="tel"],
.demande_form_champ input[type="url"],
.demande_form_champ input[type="search"],
.demande_form_champ select,
.demande_form_champ #de_npa {
    width: 100%;
    height: 42px;
    background-color: #fff;
	font-size:18px;
    color: #022452;
    border-radius: 21px; /* Demi-cercle sur tous les côtés pour un effet arrondi */
    border: none;
    padding: 0 10px;
    box-sizing: border-box;
}

.demande_form_champ #de_npa {
    width: 50%;
    height: 42px;
	font-size:18px;
    background-color: #fff;
    color: #022452;
    border-radius: 21px; /* Demi-cercle sur tous les côtés pour un effet arrondi */
    border: none;
    padding: 0 10px;
    box-sizing: border-box;
}
.select2-container .select2-selection--single .select2-selection__rendered{
	width: 100%;
    height: 25px;
    color: #022452;
    box-sizing: border-box;
}

.select2-container--default .select2-results__option--highlighted[aria-selected]{
	background-color: #022452;
    color: white;
}
.select2-results__options {
	color:#000;
}


textarea {
    width: 100%;
	font-size:18px;
    background-color: #fff;
    color: #022452;
    border-radius: 5px;
    border: none;
    padding: 10px;
    box-sizing: border-box;
}

/* Stylisation des checkbox et radio pour harmoniser */
input[type="checkbox"],
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 4px;
    background-color: #022452;
    position: relative;
    cursor: pointer;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background-color: #0de3da;
    border-color: #0de3da;
}

input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #022452;
    font-size: 14px;
    font-weight: bold;
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #022452;
    border-radius: 50%;
}

button, #continuerbtn, #backbtn, #submit_btn_div {
    background-color: #0de3da;
    color: #000;
    border: none;
	font-size: 15px;
	font-weight: normal;
    border-radius: 21px; /* Demi-cercle */
    padding: 10px 20px;
    cursor: pointer;
}
button:hover, #continuerbtn:hover, #backbtn:hover, #submit_btn_div:hover {
    color: #fff;

}
