@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* variables */
:root {
  --primary-color: rgb(255, 128, 73);
  --secondary-color: rgb(233, 238, 255);
  --text-color: rgb(21, 21, 21);
  --text-color-2: rgb(106, 106, 106);
  --field-color: rgb(255, 255, 255);
}
body {
  font-family: "Jost";
  width: 100%;
  position: relative;
  height: auto;
}

main {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sideArea,
.formContent {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.avatar {
  background-color: rgb(70, 70, 70);
  width: 340px;
  height: 415px;
  border-radius: 175px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 30px;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainHeading {
  font-size: 38px;
  color: var(--text-color);
  font-weight: 900;
  margin-bottom: 15px;
}
.mainDesc,
.formContent p {
  font-size: 20px;
  font-weight: normal;
  color: var(--text-color-2);
}

.socialMedia {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.socialMedia li a {
  font-size: 19px;
  color: var(--text-color);
}
.formArea {
  width: 100%;
  height: 100%;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  padding: 30px 0;
}
#steps {
  margin-top: 65px;
}
.formContent h1 {
  font-size: 50px;
  font-weight: 900;
  color: var(--field-color);
  line-height: 1;
  margin-bottom: 15px;
  color: rgb(255, 255, 255);
}
.formContent p {
  color: var(--field-color);
}
.steps {
  margin-top: 50px;
}
.textField {
  margin-bottom: 33px;
}
.textField label {
  font-size: 18px;
  color: var(--field-color);
  font-weight: 500;
  display: flex;
  gap: 6px;
  justify-content: start;
  align-items: center;
  margin-bottom: 6px;
}
.textField label i {
  font-size: 15px;
}
.textField input,
.textField select {
  background-color: var(--field-color);
  width: 100%;
  height: 50px;
  border-radius: 46px;
  border: solid 2px transparent;
  padding: 0 50px;
  transition: 0.5s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.textField select {
  -webkit-appearance: none;
  cursor: pointer;
}
.textField select option {
  cursor: pointer;
}
.textField input:focus,
.textField select:focus {
  outline: none;
  border-color: var(--primary-color);
}
::placeholder,
.textField input,
.textField select {
  font-size: 18px;
  color: var(--text-color-2);
  font-weight: 500;
}
.next,
#sub {
  background-color: var(--primary-color);
  border-radius: 46px;
  width: 100%;
  border: solid 2px transparent;
  height: 50px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--field-color);
  transition: 0.5s;
}
.next:hover,
#sub:hover {
  background-color: var(--field-color);
  border-color: var(--primary-color);
  color: var(--primary-color);
}
#sub img {
  width: 25px;
}
#error {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
}

.invalid {
  border: solid 2px #ff4444 !important;
  position: relative;
}

.thankyou-page {
  background-image: url(../images/bg.jpg);
  background-size: cover;
  text-align: center;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
  padding-top: 0;
}
.show-thankyou {
  display: block !important;
}
.thankyou-page .parent-wrap {
  padding-top: 150px;
}
.check-img {
  position: relative;
}
.thankyou-page img {
  width: 200px;
  filter: invert(51%) sepia(60%) saturate(1301%) hue-rotate(62deg)
    brightness(92%) contrast(101%);
}
.thankyou-page h1 {
  font-size: 70px;
  color: var(--field-color);
  font-weight: bold;
  margin-top: 50px;
}

.thankyou-page p {
  font-size: 18px;
  font-family: "Roboto";
  color: var(--field-color);
  margin-top: 30px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.contact-info {
  margin-top: 100px;
}
.contact-info h5 {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 20px;
}
.social-btn a {
  border-radius: 50%;
  background-color: rgb(237, 237, 237);
  width: 55px;
  height: 55px;
  color: #fff;
  line-height: 55px;
  display: inline-block;
  border: 0;
  margin: 0 3px;
}
.social-btn .facebook {
  background-color: rgb(64, 100, 172);
}
.social-btn .twitter {
  background-color: rgb(30, 155, 235);
}
.social-btn .linkedin {
  background-color: rgb(14, 114, 163);
}
.social-btn .youtube {
  background-color: rgb(247, 0, 0);
}
.social-btn button i {
  font-size: 15px;
  color: rgb(255, 255, 255);
}
.logo {
  text-align: center; /* Center the logo */
  margin: 5px 0; /* Space above and below the logo */
}

.logo img {
  max-width: 100%; /* Ensure the logo scales down on smaller screens */
  height: auto; /* Maintain aspect ratio */
  width:300px; /* Set a specific width for larger screens */
}

/* Responsive styles */
@media (max-width: 768px) {
  .logo img {
    width: 250px; /* Adjust width for mobile */
  }
}
