
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(145deg, #f7f4ef, #e9e1d3);
  background-image: url('https://assets.storage.infomaniak.website/images/background/unsplash/yNGQ830uFB4-medium.jpg');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #2e2a25;
  padding: 40px;
}

.container {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180,160,120,0.25);
  border-radius: 28px;
  padding: 70px;
  max-width: 760px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

h1 {
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

h2 {
  font-size: 1.35rem;
  font-weight: 300;
  color: #7b6f5e;
  margin-bottom: 28px;
}

p {
  font-size: 1.15rem;
  color: #5f564a;
  line-height: 1.8;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 38px;
  background: #8a7354;
  color: white;
  text-decoration: none;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 1px;
}

.btn:hover {
  background: #6f5c44;
  transform: translateY(-2px);
}

form {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

input, textarea {
  width: 100%;
  max-width: 460px;
  padding: 16px;
  border: 1px solid rgba(138,115,84,0.2);
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
  font-size: 1rem;
  outline: none;
}

input:focus, textarea:focus {
  border-color: #8a7354;
}

.hidden {
  display: none !important;
}

.discrete-link-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 0.85rem;
  color: rgba(224, 180, 32, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.discrete-link-left:hover {
  opacity: 1;
  color: #8a7354;
}

.discrete-link-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 0.85rem;
  color: rgba(224, 180, 32, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.6;
  background: linear-gradient(45deg, red, orange, yellow, rgb(1, 159, 1), rgb(0, 204, 255), violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.discrete-link-right:hover {
  opacity: 1;
  color: #8a7354;
}
