:root {
  --primary-color: #83271b;
  --bg-color: #f6f0eb;
  --text-color: #1d1d1b;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.profile-pic {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.form-group {
  display: flex;
  gap: 15px;
}

input,
textarea,
.custom-select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  box-sizing: border-box;
  outline: none;
}

input:focus,
textarea:focus,
.custom-select:focus {
  border-color: var(--primary-color);
}

.custom-select {
  background-color: white;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.link-button {
  background-color: var(--primary-color);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.link-button:hover {
  transform: scale(1.03);
  background-color: #1d1d1b;
}

.rgpd-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  text-align: left;
  padding: 5px;
}

.back-link {
  text-decoration: none;
  color: var(--text-color);
  font-size: 14px;
  opacity: 0.6;
}

@media (max-width: 480px) {
  .form-group {
    flex-direction: column;
  }
}
