@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  /* background-color: #f5f5f5; */
  padding: 20px;
  line-height: 1.6;
}

.form-container {
  max-width: 450px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-header {
  background-color: #d8dde3;
  padding: 30px 30px 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.form-header h1 {
  color: #10315f;
  font-size: 1.5rem;
  font-weight: 700;
}

.form-body {
  padding: 30px;
  background: #d8dde3;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
  background-color: white;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

select {
  cursor: pointer;
  color: #666;
}

textarea {
  height: 80px;
  resize: vertical;
  font-family: inherit;
}

.select-label {
  color: #666;
}

.checkbox-group {
  margin: 20px 0;
}
select > option:not(:first-of-type) {
  color: black;
}

.checkbox-group label {
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
  font-size: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  padding: 5px 0;
}

.checkbox-item input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-top: 6px;
}

.checkbox-item span {
  font-size: 1rem;
  color: #000;
  line-height: 1.4;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #c2185b 0%, #ad1457 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  display: block;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: none;
}

.disclaimer {
  font-size: 11px;
  color: #666;
  margin-top: 10px;
  font-style: italic;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 36%);

  align-items: center;
  justify-content: center;
  top: 0;
  display: none;
}
.modal {
  position: relative;
  background-color: #fff;
  padding: 1.5rem 1.5rem;
  border-radius: 0.8rem;
  margin-bottom: 20px;
  /* position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0px, -50%); */
  margin: auto;
  max-width: 460px;
  /* height: 300px; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0px 0px 30px -3px #ddd;
}

.modal .modal-content {
  color: #363636;
  /* color: #155724; */
  font-size: 0.875rem;
}

.modal .modal-close {
  border: 0;
  padding: 12px 20px;
  background: #c2185b;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 4px;
  margin-top: 22px;
  min-width: 93px;
}

.close {
  position: absolute;
  right: 6px;
  top: 7px;
  padding: 10px;
  display: flex;
  height: 30px;
  width: 30px;
  box-shadow: 0px 0px 12px 1px rgb(221 221 221 / 65%);
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(221 221 221 / 9%);
  border-radius: 5px;
  color: #8e8686;
  cursor: pointer;
}

.close:hover {
  background: #ffdede;
  color: rgb(123, 39, 39) !important;
}
.loading {
  position: fixed;
  z-index: 999;
  background: rgb(0 0 0 / 60%);
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.loader {
  width: 50px;
  height: 50px;
  border: 5px dotted #fff;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 600px) {
  .form-container {
    margin: 0;
    border-radius: 0;
  }

  .form-body {
    padding: 20px;
  }
}
