* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.main__form {
  background-color: transparent;
  padding: 32px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  border-style: solid;
  border-width: 0;
  border-color: #fff;
  border-radius: 16px;
  font-family: "Inter", sans-serif;
}
.iti {
  width: 100%;
}
.main__form:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.form__subtitle {
  color: #fff;
  text-align: center;
  margin: 10px auto;
  font-weight: 700;
  font-size: 16px;
}

.main__form input[type="text"],
.main__form input[type="email"],
.main__form input[type="tel"] {
  background: transparent;
  width: 100%;
  padding: 22px 12px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ddd;
  color: #fff;
  font-size: 16px;
  transition:
    border 0.3s,
    box-shadow 0.3s;
}

.main__form input:focus,
.main__form input:hover {
  border: 1px solid #fff;
  border-color: #fff;
  box-shadow: 0 0 6px rgba(0, 116, 255, 0.3);
  outline: none;
}

.main__form label {
  display: block;
  margin-top: 12px;
  font-weight: 500;
  color: #333;
}

.form__sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.main__form button {
  width: 100%;
  margin-top: 20px;
  min-height: 60px;
  background-color: rgb(208, 35, 20);
  padding: 0 20px;
  box-shadow: 0 0 25px 0 rgba(208, 35, 20, 0.1);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  border-radius: 100px;
  cursor: pointer;
  transition:
    background-color 0.4s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.iti__dropdown-content {
  color: #000;
}

.main__form button:hover {
  background-color: rgb(188, 16, 0);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(188, 16, 0, 0.5);
}

.main__form button[type="submit"]:disabled {
  background-color: #aaa;
  cursor: not-allowed;
  transform: translateY(0);
  opacity: 0.7;
}

.checkbox-group {
  margin: 14px 0;
}

.checkbox-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  cursor: pointer;
}

.checkbox-group input {
  accent-color: #0074ff;
}
.top-message {
  position: fixed;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0074ff;
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  z-index: 9999;
  font-size: 14px;
  transition:
    top 0.5s,
    opacity 0.5s;
  opacity: 0;
}

.top-message.show {
  top: 20px;
  opacity: 1;
}
