/* ----------------------- Main ----------------------- */
/* ******** Variables CSS ******** */
:root {
	/* Couleurs primaires */
	--blanc: #fff;
	--noir: var(--gris-950);
	--primary-color: var(--lmsys-500);
	--lmsys-50: #eafff6;
	--lmsys-100: #cdfee7;
	--lmsys-200: #a0fad4;
	--lmsys-300: #63f2be;
	--lmsys-400: #25e2a3;
	--lmsys-500: #00e4a0;
	--lmsys-600: #00a473;
	--lmsys-700: #008360;
	--lmsys-800: #00674d;
	--lmsys-900: #005541;
	--lmsys-950: #003026;

	/* Couleurs grises */
	--gris-50: #f5f6f6;
	--gris-100: #eef0f0;
	--gris-200: #dadddd;
	--gris-300: #b9c0bf;
	--gris-400: #939d9c;
	--gris-500: #768180;
	--gris-600: #5f6a6a;
	--gris-700: #4e5656;
	--gris-800: #434949;
	--gris-900: #3a4040;
	--gris-950: #272a2a;

	/* Autres couleurs */
	--red: #ff2c2c;
}


/* ******** Principales ******** */

h1{
    font-size: 45px;
	font-weight: 600;
	width: fit-content;
	text-transform: uppercase;
	background-color: rgb(37, 226, 163);
	background-image: linear-gradient(145deg, rgba(37, 226, 163, 1) 0%, rgba(0, 103, 77, 1) 100%);
	background-size: 100%;
	background-repeat: repeat;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-background-clip: text;
	-moz-text-fill-color: transparent;
	margin: 0;
}

h2{
	font-size: 20px;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	font-family: "Montserrat", "Avenir", sans-serif;
	height: 100vh;
	font-size: 16px;
	color: var(--noir);
	padding: 10px 0;
}

/* ******** Logo ******** */
.logo {
	height: 175px;
	text-align: center;
}
.logo img {
	height: 100%;
}
/* ******** Header ******** */

header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

header .logo {
	height: 80px;
	margin-bottom: 15px;
}


/* ******** Section ******** */


section, form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
}

#submit-feedback {
	width: auto;
}

form input {
	min-width: 300px;
}

.input-icon {
	display: inline-block;
    position: absolute;
    right: 10px;
    top: 8px;
}

.description {
	margin: 10px 20px;
	text-align: justify;
}

.special-characters-unstyled-list {
	list-style: none;
}

button {
	width: 200px;
	margin: 0 10px;
}

.buttons {
	margin-top: 20px;
	padding: 0 10px
}

#cancel {
	background-color: var(--gris-50);
}

#cancel:hover {
	background-color: var(--gris-200);
}

.btn.gradient {
	border-style: none;
	font-weight: 600;
	color: var(--blanc);
	background: linear-gradient(145deg, rgba(37, 226, 163, 1) 0%, rgba(0, 164, 115, 1) 100%);
}

.btn.gradient:hover {
	color: var(--blanc);
	background: linear-gradient(145deg, rgba(0, 228, 160, 1) 0%, rgba(0, 131, 96, 1) 100%);
}

.primary-input {
	position: relative;
	margin: 15px;
}
.primary-input label {
	position: absolute;
	top: -8px;
	left: 8px;
	background-color: var(--blanc);
	font-size: 12px;
	padding: 0 5px;
	color: var(--gris-500);
}

.primary-input input {
	padding: 8px 10px;
	border: 2px solid var(--primary-color);
	border-radius: 5px;
	background-color: var(--blanc);
	width: -webkit-fill-available;
	width: 100%;
	font-size: 14px;
	color: var(--gris-500);
	font-family: "Montserrat", sans-serif;
}

 .captcha input {
	 margin: 0 10px;
	 padding: 8px 10px;
	 border: 2px solid var(--primary-color);
	 border-radius: 5px;
	 background-color: var(--blanc);
 }

/* ******** Footer ******** */
footer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 40px 0 10px 0;
}

/* ******** Responsive ******** */
@media screen and (max-width: 450px) {

	header h1 {
		text-align: center;
		font-size: 35px;
		max-width: 200px;
	}

	form input {
		min-width: 280px;
	}

	form .buttons {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	form button {
    	width: 100%;
  	}
}
