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

body {
  scrollbar-width: none;
}
::-webkit-scrollbar {
  width: 10px; /* width of the scrollbar */
}
::-webkit-scrollbar-track {
  background: #ffffff; /* color of the track */
}
::-webkit-scrollbar-thumb {
  background: #CBDB29;
}

.container {
  width: 100%;
  height: 100vh;
  padding: 20px 0 40px 0;
  margin-left: auto;
  margin-right: auto;
  background-color: #041E30;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
}

/* Left Side what you think */

.left-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.left-wrapper h2 {
  display: flex;
  width: 100%;
  height: 164px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #CBDB29;
  font-family: "Azo Sans Bold";
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
  align-items: center;
}


.left-wrapper p {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  color: #fff;
  font-family: "Azo Sans Reg";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
  padding: 5%;
}

.left-wrapper > p:last-child {
  margin-top: 20px;
}

 .left-wrapper a {
	font-size: 20px;
	font-weight: 500;
   	color: #fff;
    text-decoration: none; /* Remove underline */
}

.button {
    display: inline-block; /* Make the link behave like a button */
    background-color: #2a7b7e; /* Button background color #1b3054 #7d9cb0 */
    color: white; /* Text color */
    padding: 10px 20px; /* Padding for the button */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    border: none; /* Remove border */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.button:hover {
    background-color: #8aa9bb; /* Change background color on hover */
}

.button {
        display: block; /* Make the button take the full width */
        width: 25%; /* Set width to 100% */
        text-align: center; /* Center the text */
        margin: 10px auto; /* Add some margin for spacing */
}


/* Right Side submit feedback */

.right-wrapper {
  margin-top: 50px;
  width: 55%;
  height: 850px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  flex-shrink: 0;
  padding-bottom: 50px;
  background: #fff;
}

.right-content {
  padding: 0px 80px;
  width: 100%;
}

.right-content h1 {
  display: flex;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #000;
  text-align: start;
  font-family: "Azo Sans Med";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.line {
  width: 380px;
  height: 3px;
  margin-bottom: 1rem;
  background: #CBDB29;
}

.input-wrapper p {
  display: flex;
  width: 400px;
  height: auto;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #000;
  font-family: "Azo Sans Med";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 12px;
  padding-left: 20px;
}

.input-wrapper {
  display: flex;
  margin-bottom: 13px;
  flex-direction: column;
  gap: 8px;
}

.input-wrapper input,
.input-wrapper textarea,
#emailList {
  width: 100%;
  height: 58px;
  flex-shrink: 0;
  font-family: "Azo Sans Reg";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 20px;
  padding-right: 20px;
}
.option {
  width: 100%;
  height: 58px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(79, 79, 79, 0.01);
  box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.69);
  font-family: "Azo Sans Reg";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 20px;
  padding-right: 20px;
  outline: transparent;
  border: transparent;
}

.full-name p {
  margin-top: 26px;
}

.input-wrapper textarea {
  height: 128px;
  padding-top: 1rem;
  resize: none;
}

.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 58px;
}

.submit-btn {
  display: flex;
  width: 247px;
  height: 58px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #CBDB29;
  text-align: center;
  font-family: "Azo Sans Med";
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color:#041E30;
  border: transparent;
  cursor: pointer;
}

/* Media Queries */

@media (max-width: 1500px) {
  .button {
    display: block; /* Make the button take the full width */
    width: 30%; /* Set width to 100% */
	text-align: center; /* Center the text */
    margin: 25px auto; /* Add some margin for spacing */
  }
}

@media (max-width: 1320px) {
  .left-wrapper h2 {
    height: auto;
    font-size: 52px;
    margin-bottom: 30px;
  }

  .left-wrapper {
    padding: 100px 0 0 0;
  }
	
  .button {
    display: block; /* Make the button take the full width */
    width: 40%; /* Set width to 100% */
	text-align: center; /* Center the text */
    margin: 10px auto; /* Add some margin for spacing */
  }

  .right-content {
    padding: 100px 0 0 60px;
  }
}

@media (max-width: 1000px) {
  .container {
    flex-direction: column;
  }

  .left-wrapper {
    width: 100%;
  }
	
  .button {
    display: block; /* Make the button take the full width */
    width: 100%; /* Set width to 100% */
	text-align: center; /* Center the text */
    margin: 10px auto; /* Add some margin for spacing */
  }

  .right-wrapper {
    width: 100%;
  }

  .right-content {
    padding: 70px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .input-wrapper {
    width: 80%;
    display: flex;
    flex-direction: column;
  }

  .input-wrapper input {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .left-wrapper h2 {
    font-size: 42px;
    margin-bottom: 24px;
  }

  .right-content h1 {
    font-size: 30px;
  }

  .input-wrapper p,
  .input-wrapper input {
    font-size: 18px;
  }

  .submit-btn {
    width: 188px;
    font-size: 22px;
  }

  .right-wrapper {
    height: 780px;
  }

  .left-wrapper {
    padding: 66px 0 66px 32px;
  }
}

@media (max-width: 450px) {

  header {
    padding-left: 0%;
    padding-right: 12px;
  }
  .left-wrapper h2 {
    font-size: 30px;
    margin-bottom: 22px;
  }

  .right-content h1 {
    font-size: 24px;
  }

  .line {
    width: 250px;
  }

  .input-wrapper p,
  .input-wrapper input {
    font-size: 15px;
  }

  .left-wrapper p {
    font-size: 16px;
  }

  .submit-btn {
    width: 146px;
    font-size: 18px;
  }
}