body {
  background-color: black;
}
nav {
  display: flex;
  /* justify-content: space-between; */
  gap: 260px;
  place-content: center;
  text-align: center;
  margin-top: 25px;
}
.icon > label {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: white;
}
.icon > i {
  font-size: large;
}
.sections > a {
  text-decoration: none;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  margin-left: 20px;
}
.cta :nth-child(1) {
  padding: 12px 16px;
  border-radius: 50px;
  color: white;
  background-color: #4588d9;
  border: none;
  cursor: pointer;
}
.cta > :nth-child(2) {
  padding: 12px 16px;
  border-radius: 30px;
  color: #558bc3;
  background-color: #1b3045;
  border: none;
  margin-left: 10px;
  cursor: pointer;
}
.container {
  display: flex;
  padding: 100px 120px;
  height: 100vh;
  justify-content: space-between;
}
.left {
  color: white;
  background: #3f92ee;
  background: linear-gradient(
    182deg,
    rgba(63, 146, 238, 1) 39%,
    rgba(186, 219, 251, 1) 71%
  );
  width: 350px;
  height: 520px;
  padding: 32px;
  border-radius: 10px;
  font-family: Arial, Helvetica, sans-serif;
}
.left > h5 {
  font-size: x-large;
  margin-bottom: 20px;
}
.left > label {
  font-size: large;
  font-weight: bold;
}
.left > p {
  margin-top: 5px;
  line-height: 1.5;
}
.left > .icons {
  margin-top: 20px;
}
.icons > i {
  margin-right: 10px;
}
.right {
  font-family: Arial, Helvetica, sans-serif;
}
.right > label {
  color: white;
}
.paeen {
  display: flex;
}
.paeen > label {
  color: white;
}
.boxer {
  display: flex;
  gap: 20px;
}
.boxer > input {
  padding: 4px;
  background-color: black;
  border: 1px solid grey;
  border-radius: 4px;
  width: 250px;
}
.paeen {
  gap: 210px;
}
.boxer > input {
  margin-top: 10px;
  width: 250px;
  height: 30px;
  border-radius: 7px;
  color: white;
}
.lower > input {
  padding: 4px;
  background-color: black;
  border: 1px solid grey;
  border-radius: 4px;
  margin-top: 10px;
  width: 530px;
  height: 30px;
  color: white;
}
.lower > label {
  color: white;
}
.lower > p {
  color: white;
}
.lower > button {
  width: 530px;
  height: 40px;
  background-color: #4789De;
  border: none;
  border-radius: 7px;
  color: white;
}
.lower > textarea {
  background-color: black;
  border-radius: 7px;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
}
a{
  text-decoration: none;
  color: #3f92ee;
}





/* -------------------- */
/* ✅ RESPONSIVE DESIGN */
/* -------------------- */

@media (max-width: 1200px) {
  nav {
    gap: 80px;
  }

  .container {
    padding: 80px 60px;
  }
}

/* ✅ TABLETS */
@media (max-width: 992px) {
  nav {
    flex-direction: column;
    gap: 20px;
  }

  .container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 60px 40px;
    height: auto;
  }

  .left {
    width: 100%;
    max-width: 420px;
  }

  .right {
    width: 100%;
    max-width: 420px;
  }

  .paeen {
    gap: 170px;
  }

  .boxer > input,
  .lower > input,
  .lower > button,
  .lower > textarea {
    width: 100%;
  }
}

/* ✅ MOBILE */
@media (max-width: 768px) {
  nav {
    text-align: center;
  }

  .sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta {
    margin-top: 10px;
  }

  .paeen {
    flex-direction: column;
    gap: 5px;
  }

  .boxer {
    flex-direction: column;
  }

  .boxer > input {
    width: 100%;
  }

  .lower > input,
  .lower > button,
  .lower > textarea {
    width: 100%;
  }

  .left {
    height: auto;
  }
}

/* ✅ EXTRA SMALL MOBILES */
@media (max-width: 480px) {
  .container {
    padding: 40px 20px;
  }

  .left {
    padding: 20px;
  }

  .lower > textarea {
    cols: 100%;
  }
}
