body{margin: 0; padding: 0;display: flex;flex-direction: column; position: relative;}

header{position: absolute; width:98%;top:0; z-index: 100; display: flex; flex-direction: column; padding: 10px; }
.containerSetUp{display: flex; flex-direction: column;align-items: center; text-align: center; margin-bottom: 10px; padding: 10px;}
.boutonAcceuil{ display: block;text-decoration: none; text-align: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);  opacity: 0.5; max-width: fit-content; 
    border-radius: 100px; padding: 5px; opacity: 0.5; border: 1px solid #000000;
font-family: 'Playfair Display SC';font-style: normal;
font-weight: 400; font-size: 40px;line-height: 150%;
color: #000000; background: #FFFFFF;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.boutonConnexion{ display: block;text-decoration: none; text-align: center;
     background: #C1B2A5;; color: black; min-width: max-content;
    border-radius: 100px;  border: 1px solid #000000; padding: 10px; box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);}

.log{display: flex; flex-direction: row; justify-content: space-between; text-align: center;}
.space-between{width: 10vw;}

/* Fond */
.background{ 
  min-height: 90vh;
  font-family: "Georgia", serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: url("image/annonce.png") no-repeat center center/cover; margin: 0;}

/* Overlay semi-transparent */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.6);
  z-index: 1;
}

/* Formulaire */
.form-container {
  position: relative;
  z-index: 2;
  padding: 30px;
  padding-top:17vh;
  border-radius: 12px;
  width: 30%;
  text-align: left;
}

h1 { 
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

h2 {
  text-align: center;
  font-size: 20px;
  margin: 10px 0 20px;
  font-weight: bold;
}

label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #aaa;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.9);
}
input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #111827;
  transition: all 0.25s ease;
  cursor: pointer;
}



.radio-group {
  margin-bottom: 15px;
  font-size: 14px;
}

button  {
  display: block;
  margin: 20px auto 0;
  padding: 10px 30px;
  border: none;
  border-radius: 20px;
  background: #d1b18a;
  color: black;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #b8986c;
}
.button{ text-decoration: none; text-align: center; justify-content: center;
  display: block; 
  width: 20%;
  margin: 20px auto 0;
  padding: 10px 30px;
  border: none;
  border-radius: 20px;
  background: #d1b18a;
  color: black;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}
/* Footer */
footer {
  position: relative;
  z-index: 2;
  background: white;
  width: 100%;
  text-align: center;
  border-top: 1px solid #ccc;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.footer-logo {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links p {
  margin: 0 0 5px;
  font-weight: bold;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.footer-links li {
  margin: 5px 0;
  cursor: pointer;
}

.footer-links li:hover {
  text-decoration: underline;
}

copyright {
  font-size: 12px;
  color: #555;
}


