@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

textarea,
input[type='text'],
input[type='button'],
input[type='submit'],
input[type='email'],
input[type='tel'],
input[type='number'],
input[type='checkbox'] {
  -webkit-appearance: none !important;
  border-radius: 0;
}

button {
  cursor: pointer;
}

button {
  background: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

#loading {
  display: none;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading img {
  width: 100%;
}

.custom-form {
  max-width: 500px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  /*box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 8px;*/
  border-radius: 18px !important;
  padding: 20px;
  position: relative;
  width: 100%;
}
.custom-form__mask {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  border-radius: 12px;
  transition: 0.3s ease backdrop-filter;
}

.custom-form__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  height: fit-content;
}

.custom-form__header img {
  max-width: 50px;
  min-height: 40px;
}
.custom-form__header h5 {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  font-size: 28px;
  margin: 0 auto;
  text-align: center;
}
.custom-form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.custom-form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* position: relative; */
  width: 100%;
}
.custom-form form input {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 4px;
  min-height: 45px !important;
  border-radius: 6px !important;
  padding: 8px 10px;
  width: 100%;
  background: #fff;
  color: #333;
  transition:
    0.3s ease background-color,
    0.3s ease box-shadow;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  border: none !important;
  box-sizing: border-box;
}
.custom-form form input::-moz-placeholder {
  color: #333;
}
.custom-form form input::placeholder {
  color: #333;
}
.custom-form form input.valid {
  background-color: rgba(199, 248, 206, 0.65);
  box-shadow: none;
}
.custom-form form input.invalid {
  background-color: rgba(248, 196, 192, 0.65);

  box-shadow: none;
}
.custom-form form .phone__input {
  display: flex;
  box-sizing: border-box;
  flex-direction: row;
  align-items: center;
  width: 100%;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px;
  border-radius: 8px !important;
  padding-left: 8px;
  transition:
    0.3s ease background-color,
    0.3s ease box-shadow;
  border: none;
}

.custom-form form .phone__input .flag-container {
  background: none !important;
}

.custom-form form .phone__input input {
  padding-left: 10px;
  background: none;
  box-shadow: none;
}
.custom-form form .phone__input .selected-flag {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}
.custom-form form .phone__input .flag-container {
  height: 100%;
  position: relative;
}
.custom-form form .phone__input .flag-container .iti-arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}
.custom-form form .phone__input.valid {
  background-color: rgba(199, 248, 206, 0.65) !important;
  box-shadow: none;
}
.custom-form form .phone__input.invalid {
  background-color: rgba(248, 196, 192, 0.65) !important;
  box-shadow: none;
}

/*Phone messages*/

.custom-form form .phone-feedback-container {
  width: 100%;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
}

.custom-form form .status-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 7px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.custom-form form .status-message svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.custom-form form .status-hint {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px;
  background-color: rgba(183, 183, 183, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
  color: #323232;
}

.custom-form form .status-success {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px;
  background-color: rgba(34, 197, 94, 0.85);
  border-color: rgba(34, 197, 94, 0.2);
  color: #ffeeee;
}

.custom-form form .status-error {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px;
  background-color: rgba(239, 68, 68, 0.85);
  border-color: rgba(239, 68, 68, 0.2);
  color: #ffeeee;
}

.custom-form form .is-hidden {
  display: none !important;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-form form .status-message:not(.is-hidden) {
  animation: slideIn 0.3s ease-out;
}
/*Phone messages*/

.custom-form form .form__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  margin-top: 10px;
  padding: 18px 26px;
  border-radius: 40px !important;
  border: none;
  background: #ec0000;

  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  min-height: 58px;
}
.custom-form form .active {
  background-color: rgba(115, 253, 133, 0.9);
  animation: pulsing 2s ease infinite;
  color: #333;
}

@keyframes pulsing {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.iti-flag {
  background-image: url('../images/flags_1.png');
}

@media (max-width: 500px) {
  .custom-form {
    padding: 10px;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti-flag {
    background-image: url('../images/flags_2x.png');
  }
} /*# sourceMappingURL=style.css.map */
