* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.main__form {
  font-family: 'Inter', sans-serif;
}

.iti__dropdown-content {
  color: #000;
}

.iti {
  width: 100%;
  margin-top: 8px;
}
.main__form:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.form__subtitle {
  color: #000;
  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'] {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 16px;
  transition:
    border 0.3s,
    box-shadow 0.3s;
}

.main__form input:focus,
.main__form input:hover {
  border: 1px solid #ffe8ae;
  border-color: rgb(255, 232, 174);
  box-shadow: 0 0 16px rgba(255, 232, 174, 0.3);
  outline: none;
}

.main__form label {
  display: block;
  margin-top: 12px;
  font-weight: 500;
  color: #333;
}

.form__title {
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.4;
  color: #0d1985 !important;
  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-block: 20px;
  height: 50px;
  background: rgb(247 158 27);
  padding: 0 20px;
  box-shadow: 0 6px 16px rgba(247, 158, 27, 0.3);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main__form button:hover {
  background: rgb(255, 174, 53);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(247, 158, 27, 0.4);
}

.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;
}
