/* Import Google Fonts similaires */
@import
	url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=IBM+Plex+Mono&display=swap')
	;

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
}

body {
	font-family: 'Space Grotesk', sans-serif;
	font-style: normal;
	font-weight: 400;
	letter-spacing: -0.03em;
	text-transform: none;
	font-size: 1.6rem;
	line-height: 1.5;
	background: #fefbfc;
	color: #333;
	margin: 0;
	padding: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	transition: background 0.5s ease, color 0.5s ease;
}

html, body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	height: 100%;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	width: 100%;
	min-width: 100%;
}

.intro-banner p {
	width: 60%;
	margin: 3rem auto;
}

/***********SOUS-TITRE*************/
h2 {
	margin: 5.5rem auto 2rem;
	font-weight: bolder;
	font-size: 3rem;
	color: #982760;
}

h2 span {
	color: #982760;
}

/************ BOUTONS *************/

/* Bouton principal */
.btn-primary {
	background-color: #9e2d66;
	color: white;
	border: none;
	border-radius: 16px;
	padding: 1.6rem 1rem;
	cursor: pointer;
	ont-size: 2rem;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
	width: 18rem;
	height: auto;
	display: inline-block;
	text-align: center;
}

.btn-primary:hover {
	background-color: #b03b74;
	box-shadow: 0 0 10px rgba(158, 45, 102, 0.3);
}

/* Bouton secondaire plus petit (ex : ajouter un sous-module) */
.btn-small {
	padding: 1.5rem 2rem;
	font-size: 1.5rem;
	width: auto;
	height: auto;
}

/********** FORM CONTAINER (LOGIN ) ***********/
.form-container, .login-container {
	background: #18052E;
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	max-width: 50rem;
	width: 100%;
	text-align: center;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-container input, .form-container textarea, .form-container select,
	.login-container input {
	width: calc(100% - 40px);
	padding: 0.75rem;
	margin: 0.625rem auto;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50px;
	font-size: 1.7rem;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	transition: background 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
	outline: none;
	backdrop-filter: blur(5px);
	display: block;
}

.form-container input::placeholder, .form-container textarea::placeholder,
	.login-container input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.form-container input:focus, .form-container textarea:focus,
	.form-container select:focus, .login-container input:focus {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#loginForm {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}