@font-face {
  font-family: "Main";
  src: url("../assets/fonts/Estedad.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Main";
}

html,
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  background-image: url("../assets/Backgrounds/desktop.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* container */
.container {
  width: 100%;
  padding: 4rem;
}

/* Layout */
.main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.main-left,
.main-right {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  /* border: 1px solid #000; */
}

/* Main Left Style */

.main-left__header,
.main-left__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-left__header img {
  width: 150px;
}

.main-left__header span {
  font-size: 14px;
  background: linear-gradient(to right, #0d9276, #20d698);
  font-weight: bolder;
  color: transparent;
  background-clip: text;
}

.main-left__header p {
  background-color: #e7f3f2;
  color: #0d9276;
  padding: 0.2rem 1rem;
  font-size: 12px;
  margin-top: 0.5rem;
  border-radius: 40px;
}

.main-left__content h1 {
  margin-top: 1rem;
  font-size: 26px;
  max-width: 350px;
  text-align: center;
  font-weight: bold;
}

.main-left__content h1 span {
  background: linear-gradient(to right, #0d9276, #20d698);
  font-weight: bolder;
  color: transparent;
  background-clip: text;
}

.main-left__content p {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 16px;
  color: #8d8d8d;
  max-width: 400px;
}

/* feature */

.feature {
  margin: 1rem auto 0;
  border: 2px solid #ffffff;
  background-color: #ffffff1a;
  backdrop-filter: blur(50px);
  border-radius: 1rem;
  padding: 0.6rem 0.3rem;
  max-width: 500px;
  min-width: 310px;
}

.flex-feature {
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-feature:not(:last-child) {
  border-left: 1px solid #e0e0e0;
}

.item-feature img {
  width: 32px;
  height: 32px;
}

.item-feature span {
  margin-top: 0.5rem;
  font-size: 10px;
  text-align: center;
  width: 105px;
  padding: 0 0.5rem;
}

/* Form Style */

.form-section {
  margin: 1rem auto 0;
  border: 2px solid #ffffff;
  background-color: #ffffff1a;
  backdrop-filter: blur(50px);
  border-radius: 1rem;
  padding: 1rem;
  max-width: 500px;
  min-width: 310px;
}

.form-section h1 {
  font-size: 18px;
  text-align: center;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  margin: 0.5rem 0 1rem;
}

.form-input {
  position: relative;
  margin-bottom: 1rem;
  max-width: 100%;
  background-color: #fff;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.form-input img {
  width: 24px;
  height: 24px;
}

.form-input input {
  width: 100%;
  border: none;
  border-right: 2px solid #e0e0e0;
  outline: none;
  padding: 0 0.3rem;
}

.form-input:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.form-input:focus-within {
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.3);
}

.input-btn {
  width: 100%;
  margin-top: 1rem;
}

.input-btn input {
  margin-top: 1rem;
  width: 100%;
  max-width: 100%;
  border: none;
  outline: none;
  color: #fff;
  background: linear-gradient(to left, #0d9276, #20d698);
  border-radius: 12px;
  padding: 0.8rem 1rem;
}

/* Selected */
.input-wrapper {
  width: 100%;
  background: white;
  border-radius: 16px;
  padding: 0.8rem 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.input-wrapper:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.input-wrapper:focus-within {
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.3);
}

.label {
  font-size: 16px;
  color: #6b7280;
  white-space: nowrap;
}

.icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

.dropdown {
  position: relative;
  flex: 1;
}

select {
  position: relative;
  width: 100%;
  background: transparent;
  border: none;
  font-size: 14px;
  color: #1f2937;
  cursor: pointer;
  outline: none;
  appearance: none;
  padding-right: 30px;
}

/* Custom Arrow */
.dropdown::after {
  content: "▼";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #6b7280;
  pointer-events: none;
}

/* Option Styling */
select option {
  padding: 12px;
  font-size: 14px;
}

::placeholder {
  color: #d0d0d0;
}

/* footer */

.footer-form {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer-form img {
  width: 16px;
  height: 19px;
}

.footer-form p {
  font-size: 14px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  body {
    background-image: url("../assets/Backgrounds/mobile.png");
  }

  .container {
    padding: 1rem 2rem;
  }
  .main {
    grid-template-columns: 1fr;
  }

  .main-right {
    display: none;
  }
}

@media (min-width: 768px) {
  .flex-feature {
    justify-content: space-around;
  }
  .item-feature:not(:last-child) {
    border-left: none;
  }
  .item-feature img {
    width: 48px;
    height: 48px;
  }

  .item-feature span {
    font-size: 14px;
    width: 115px;
    padding: 0 0.5rem;
  }

  .input-btn input {
    font-size: 18px
  }
}

#phone {
  text-align: right;
}

/* Main Right Style */
