* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Lato Thin */
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

/* Lato Thin Italic */
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

/* Lato Light */
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Lato Light Italic */
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

/* Lato Regular */
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Lato Italic */
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

/* Lato Bold */
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Lato Bold Italic */
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

/* Lato Black */
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

/* Lato Black Italic */
@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

.main__form {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  max-width: 450px;
  margin-inline: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s;
  width: 100%;
}
.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: 12px;
  font-family: "Lato", sans-serif;
  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;
  font-size: 12px;
  font-family: "Lato", sans-serif;
}

.main__form button {
  width: 100%;
  padding: 14px;
  margin-top: 20px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #0074ff, #3399ff);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0, 116, 255, 0.4);
  font-family: "Lato", sans-serif;
}

.main__form button:hover {
  background: linear-gradient(90deg, #005ce6, #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;
  font-family: "Lato", sans-serif;
}

.checkbox-group input {
  accent-color: #0074ff;
  font-family: "Lato", sans-serif;
}
.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-family: "Lato", sans-serif;
  transition:
    top 0.5s,
    opacity 0.5s;
  opacity: 0;
}

.top-message.show {
  top: 20px;
  opacity: 1;
}
