.content-register {
	text-align: center;
	margin: 0 auto;
	max-width: 600px;
	padding: 20px;
}
.form-container {
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	margin-top: 20px;
}
.form-group {
	margin-bottom: 15px;
	width: 95%;
	display: flex;
	flex-direction: column;
	text-align: left;
}
.form-group label {
	margin-bottom: 5px;
}
.form-group input, .form-group select, .form-group textarea {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 18px;
	width: 100%;
}

input[type="password"] {
	font-size: 18px;
}

.error-message {
	color: red;
	margin-bottom: 10px;
}
.success-message {
	color: green;
	margin-bottom: 10px;
}
input[type="submit"] {
	background-color: #333;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
	font-size: 16px;
}
input[type="submit"]:hover {
	background-color: #555;
}

select option[disabled] {
	color: #888; 
	background-color: #ffe6e6; 
}
#pays-select {
	border: 1px solid red;
	background-color: #ffe6e6;
}

#pays-select.valid {
	border: 1px solid green;
	background-color: #e6ffe6;
}

input.valid, select.valid {
	border: 1px solid green;
	background-color: #e6ffe6;
}

input.invalid, select.invalid {
	border: 1px solid red;
	background-color: #ffe6e6;
}


input.valid, select.valid, textarea.valid {
	border: 1px solid green;
	background-color: #e6ffe6;
}

input.invalid, select.invalid, textarea.invalid {
	border: 1px solid red;
	background-color: #ffe6e6;
}


#submit-button {
	background-color: red;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
	font-size: 16px;
}

#submit-button:disabled {
	background-color: grey;
	cursor: not-allowed;
}