/* Style global */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.menu-centered {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background-color: #ffffffcc;
  backdrop-filter: blur(10px);
  padding: 10px 30px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.menu-centered a {
  position: relative;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  color: #444;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.menu-centered a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0%;
  background-color: #ffcc00;
  transition: width 0.3s ease;
}

.menu-centered a:hover::after,
.menu-centered a.active::after {
  width: 100%;
}

.menu-centered a:hover,
.menu-centered a.active {
  color: #ffcc00;
}

/* Section formulaire */
.form-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px 100px;
}

.form-container {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  width: 100%;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: bold;
}

input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  width: 100%;
  max-width: 480px;
}

button {
  background-color: #ffcc00;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #e0b800;
}

.switch-form {
  margin-top: 16px;
  font-size: 0.95em;
  text-align: center;
}

.switch-form a {
  color: #ffcc00;
  text-decoration: none;
}/* CSS Document */

/* Footer */
.footer-double {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 40px;
  border-top: 1px solid #eee;
  background-color: #f2f2f2;
  font-size: 0.9rem;
}

.footer-double p {
  margin: 0;
}

.logo-hero {
	display: block;
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
	height: 200px;
}
