.custom-wc-form {
  width: 100%; /* Ensure the form takes full width */
  max-width: 100%; /* Prevent any max-width restrictions */
  box-sizing: border-box; /* Include padding and border in width */
}

.custom-wc-form h3 {
  color: white;
}

.custom-wc-form label {
  color: white;
  display: block;
  margin-bottom: 8px;
}

.custom-wc-form input,
.custom-wc-form input[type="text"],
.custom-wc-form input[type="tel"],
.custom-wc-form select {
  background-color: #ffffff1c;
  width: 100%;
  padding: 16px;
  border: 1px solid white;
  border-radius: 10px;
  color: white;
}

.custom-wc-form select option {
  color: black;
}
.custom-wc-form input::placeholder {
  color: white;
  opacity: 0.7;
}

.custom-wc-form .form-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
  padding: 16px;
  background-color: #ffffff09;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .custom-wc-form .form-group {
    grid-template-columns: 1fr; /* Change to one column */
  }
}

.custom-wc-form .form-group.form-group_col {
  display: flex;
  flex-direction: column;
}

.form-group .full-width {
  grid-column: 1 / -1;
}

.form-group .form-buttons {
  display: flex;
  margin-top: 20px;
}

.form-group .form-buttons button {
  flex: 1;
}

.input_description {
  font-size: 80%;
  color: white;
  opacity: 0.5;
}

.form-step {
  width: 100%; /* Ensure form steps take full width */
  max-width: 100%; /* Prevent any max-width restrictions */
  box-sizing: border-box; /* Include padding and border in width */
  display: none;
}

.form-step.active {
  display: block;
}

.next-step,
.prev-step {
  margin-right: 10px;
}

button.next-step,
input[type="submit"] {
  background-color: white !important;
  color: inherit;
}
input[type="submit"]:hover {
  background-color: #ffffffd0 !important;
  color: #121212 !important;
}

p.already-registered {
  color: white;
  text-align: center;
}

form h3 {
  margin-top: 20px;
  margin-bottom: 20px;
}
