* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.main__form {
  background-color: #fff;
  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;
  color: #fff;
}
.iti {
  width: 100%;
}
.main__form:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.main__form input[type="text"],
.main__form input[type="email"],
.main__form input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition:
    border 0.3s,
    box-shadow 0.3s;
}

.main__form input:focus,
.main__form input:hover {
  border: 1px solid #0074ff;
  border-color: #0074ff;
  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__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #0d1985;
  text-align: center;
  margin-top: 0 !important;
}

.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;
  height: 60px;
  background-color: #0d1985;
  padding: 0 20px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 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;
}

.main__form button:hover {
  background-color: #1a80ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 116, 255, 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;
}

.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;
  transition:
    top 0.5s,
    opacity 0.5s;
  opacity: 0;
}

.top-message.show {
  top: 20px;
  opacity: 1;
}
