* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

html[dir=rtl] body {
  font-family: "Tajawal", sans-serif;
}
html[dir=rtl] .intro_text h1 {
  font-size: 8rem !important;
}
html[dir=rtl] select {
  background-position: left 10px center;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrollbars */
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.bold {
  font-weight: 600;
}

.img_container img {
  width: 100%;
  height: 100%;
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: 40px 50px;
  padding-bottom: 10px;
  padding-top: 20px;
}

.nav {
  position: relative;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 20px;
}

.language {
  inset-inline-end: 50px;
  display: flex;
  background: white;
  border-radius: 5px;
}
.language a {
  width: 70px;
  height: 50px;
  padding: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: black;
  cursor: pointer;
  font-size: 17px;
}
.language a.active {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background-color: rgb(234, 88, 11);
  color: white;
  border-radius: 5px;
  cursor: default;
  pointer-events: none;
}

.overlay {
  background: url("background.png") center/cover no-repeat;
  position: absolute;
  filter: blur(8px);
  -webkit-filter: blur(6px);
  top: 0px;
  left: 0;
  width: 101%;
  height: 102%;
}
.overlay:after {
  content: "";
  position: absolute;
  top: -18px;
  left: -13px;
  width: 108%;
  height: 106%;
  background: #0c3063;
  opacity: 0.84;
}

.content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.content .intro_text {
  color: #ffffff;
  width: 60%;
}
.content .intro_text h1 {
  font-size: 10rem;
  font-weight: bold;
}
.content .intro_text h1 .highlight {
  display: block;
}
.content .intro_text p {
  font-size: 2.2rem;
  line-height: 2.5rem;
  color: #efefef !important;
  font-weight: 300;
  padding-top: 20px;
  margin-bottom: -24px;
}

.highlight {
  color: #ff6600;
}

.form-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 620px;
}
.form-container h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #091058;
  font-weight: 600;
}

.details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.details .age_input {
  width: 40%;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}
.form-group label {
  color: #091058;
  margin-bottom: 15px;
  display: block;
  font-size: 1rem;
  font-weight: 500;
}

.input-field:focus-visible {
  outline-color: rgba(234, 88, 11, 0.7) !important;
}

.input-field,
.phone-input input,
select,
.code {
  width: 100%;
  padding: 10px 15px;
  border: 1.04px solid #f7f7f8;
  border-radius: 10px;
  height: 46px;
  box-shadow: 0px 0px 4.15px 0px rgba(0, 0, 0, 0.1215686275);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('data:image/svg+xml;utf8,<svg width="18" height="10" viewBox="0 0 18 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.92 1.4502L10.4 7.9702C9.62996 8.7402 8.36996 8.7402 7.59996 7.9702L1.07996 1.4502" stroke="%23EA580B" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-inline-end: 30px;
}

.phone-input .phone-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.phone-input .code {
  display: inline-flex;
  width: 110px;
  text-align: center;
  color: #727478;
  font-size: 15px;
  justify-content: center;
  align-items: center;
  cursor: default;
}

.submit-btn {
  width: 100%;
  background: #ff6600;
  color: #ffffff;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 10px;
  margin-top: 0px;
  font-size: 14px;
}
.submit-btn:disabled {
  background-color: gray;
  cursor: default;
  pointer-events: none;
}

.form-group {
  position: relative;
}
.form-group .field_icon {
  padding-inline-start: 40px;
}
.form-group .code {
  padding-inline-start: 30px;
}
.form-group .input_icon {
  position: absolute;
  inset-inline-start: 15px;
  height: 16px;
  bottom: 19px;
}

.form_footer {
  font-size: 14px;
  color: #6b7280;
  margin: 10px 0px;
  text-align: center;
}
.form_footer a {
  color: black;
  font-weight: 500;
}

@media only screen and (min-width: 768px) {
  .input-field,
  .phone-input input,
  select,
  .code {
    height: 56px !important;
    font-size: 17px !important;
  }
}
@media only screen and (max-width: 1366px) {
  .intro_text h1 {
    font-size: 5rem !important;
  }
  html[dir=rtl] .intro_text h1 {
    font-size: 5rem !important;
  }
}
@media only screen and (max-width: 920px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
  .form-container {
    padding: 20px;
    width: auto;
  }
  .intro_text h1 {
    font-size: 3.5rem !important;
  }
  .intro_text p {
    font-size: 1.8rem !important;
    line-height: 1.8rem !important;
  }
  html[dir=rtl] .intro_text h1 {
    font-size: 3rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    padding-top: 0px;
  }
  .img_container {
    width: 180px !important;
    height: 60px !important;
  }
  .language a {
    width: 60px;
    height: 40px;
  }
  html[dir=rtl] .intro_text h1 {
    font-size: 3rem !important;
  }
  .content {
    flex-direction: column;
  }
  .content .intro_text {
    width: 100%;
    padding-bottom: 10px;
  }
  .content .intro_text h1 {
    text-align: center;
    font-size: 3rem;
  }
  .content .intro_text h1 span {
    display: inline-block;
  }
  .content .intro_text p {
    font-size: 1.3rem !important;
    line-height: 1.5rem !important;
    text-align: center;
    margin-bottom: 0px !important;
  }
  .form-container {
    padding: 15px 20px;
  }
  .form-container h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  .form-container .submit-btn {
    margin-top: 10px;
  }
  .form-container .form-group {
    margin-bottom: 14px;
  }
  .form-container .form-group label {
    margin-bottom: 5px;
  }
  .form-container .form-group .field_icon {
    padding-inline-start: 35px;
  }
  .form-container .form-group .code {
    padding-inline-start: 25px;
  }
  .form-container .form-group .input_icon {
    bottom: 11px;
    inset-inline-start: 10px;
  }
  .form-container .input-field,
  .form-container .phone-input input,
  .form-container select,
  .form-container .code {
    padding: 5px 10px;
    height: 38px;
  }
}
@media only screen and (max-width: 600px) {
  .container {
    padding-right: 25px;
    padding-left: 25px;
  }
  .form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .form-container label {
    font-size: 0.88rem;
  }
  .form-container .form_footer {
    font-size: 0.65rem;
  }
  .nav {
    margin-bottom: 10px !important;
  }
  .img_container {
    width: 150px !important;
    height: 60px !important;
  }
  .language a {
    width: 50px;
    height: 35px;
  }
  .intro_text h1 {
    font-size: 2rem !important;
  }
  .intro_text p {
    font-size: 1.1rem !important;
    line-height: 1.3rem !important;
    margin-bottom: 10px !important;
  }
  html[dir=rtl] .intro_text h1 {
    font-size: 2rem !important;
  }
}/*# sourceMappingURL=style.css.map */