:root {
  --primary-color: #000000; /* black */
  --secondary-color: #666666; /* medium gray */
  --heading-color: #111111; /* near-black for text */
  --text-color: #333333; /* dark gray for body text */
  --background-color: #ffffff; /* white */
  --border-color: #cccccc; /* light gray for borders */
  --accent-gray: #f2f2f2;
  --transitions: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Urbanist";
  width: 100%;
  height: auto;
  color: var(--text-color);
  background-color: var(--background-color);
}

main {
  background: #808080;
  background-size: 100% 100%;
  width: 100%;
  min-height: 100vh;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 55px 50px;
}

.logo {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading-color);
}

.logo img {
  width: 18px;
}

.wirzaBtn {
  color: var(--heading-color);
  font-size: 27px;
  font-weight: 800;
  background-color: transparent;
  border: 0;
}

.wirzaBtn span {
  border-bottom: solid 4px var(--secondary-color);
  border-radius: 2px;
}

.mainHeading {
  font-size: 73px;
  color: var(--heading-color);
  font-weight: 800;
}

.sideImg {
  aspect-ratio: 1 / 1;
  margin-top: 60px;
}

form {
  padding: 80px 50px;
  border-radius: 20px;
  background-color: var(--accent-gray);
}

.inputField,
.select {
  border: solid 2px var(--border-color);
  background-color: var(--background-color);
  width: 100%;
  height: 85px;
  border-radius: 40px;
  position: relative;
  padding: 0 54px;
  margin-bottom: 40px;
  transition: var(--transitions);
}

.inputField input,
.select select,
.message textarea {
  width: 100%;
  height: 100%;
  border: 0;
  background-color: transparent;
  border-radius: inherit;
  color: var(--text-color);
}

input::placeholder,
select::placeholder,
.message textarea {
  font-size: 15px;
  font-weight: 400;
  color: #999999;
}

.inputField label {
  border: solid 2px var(--border-color);
  position: absolute;
  top: -25%;
  width: 105px;
  left: 25px;
  background-color: var(--background-color);
  height: 30px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 17px;
  gap: 3px;
  border-radius: 15px;
  transition: var(--transitions);
  color: var(--heading-color);
}

.select select {
  -webkit-appearance: none;
  font-size: 15px;
  font-weight: 400;
  color: #777;
  cursor: pointer;
  padding: 0 0px 0 50px;
}

.select,
.message {
  padding: 0;
}

.select select + span {
  display: grid;
  place-content: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--accent-gray);
  right: 20px;
  pointer-events: none;
}

.select select + span::before {
  content: "\f175";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--heading-color);
  font-size: 13px;
}

.message {
  height: auto;
}

.message label {
  top: -10%;
}

.message textarea {
  border-radius: 40px;
  height: 190px;
  padding: 40px 0 0 40px;
}

.stepBtn {
  background-color: var(--primary-color);
  width: 100%;
  height: 73px;
  border-radius: 37px;
  border: 0;
  color: var(--background-color);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.inputField input:focus,
.select select:focus,
.message textarea:focus {
  outline: none;
}

.inputField:focus-within {
  border-color: var(--primary-color);
}

.inputField:focus-within label {
  border-color: var(--primary-color);
}

.stepBtn i {
  transition: var(--transitions);
}

.stepBtn:hover i {
  transform: translateX(10px);
}

.formHeading {
  font-size: 30px;
  font-weight: 800;
  color: var(--heading-color);
  text-align: center;
}

.label {
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.radioField {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio2 {
  display: grid;
  justify-content: end;
}

.radioField label {
  font-size: 23px;
  font-weight: 800;
  color: var(--heading-color);
}

.radioField input {
  -webkit-appearance: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 2px var(--border-color);
  background-color: var(--background-color);
  transition: var(--transitions);
}

.radioField input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: var(--border-color);
}

.thankyou {
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.thankyou h1 {
  font-size: 100px;
  color: var(--primary-color);
  font-weight: 900;
}

.thankyou p {
  font-size: 40px;
  color: var(--secondary-color);
  font-weight: 700;
  width: 60%;
  margin: 20px auto;
}

.thankyou span {
  font-size: 20px;
  font-weight: 900;
  display: block;
  margin-top: 50px;
  color: var(--heading-color);
}

.thankyouIcons {
  gap: 10px;
  margin-top: 20px;
}

.thankyouIcons a {
  text-decoration: none;
}

.thankyouIcons i {
  width: 75px;
  height: 75px;
  display: grid;
  place-content: center;
  font-size: 24px;
  color: #fff;
  border-radius: 50%;
}

.thankyouIcons i.fa-youtube,
.thankyouIcons i.fa-facebook,
.thankyouIcons i.fa-twitter,
.thankyouIcons i.fa-instagram,
.thankyouIcons i.fa-tiktok {
  background-color: #000;
}

.helpLine {
  display: flex;
  align-items: center;
  gap: 20px;
}

.helpLine article {
  font-size: 17px;
  color: var(--heading-color);
  text-transform: capitalize;
}

.helpLine i {
  font-size: 38px;
  color: var(--heading-color);
}

.socialIcons {
  display: flex;
  gap: 5px;
  align-items: center;
}

.socialIcons a {
  font-size: 18px;
  color: var(--heading-color);
  text-decoration: none;
  border: solid 1px var(--heading-color);
  border-radius: 50%;
  background-color: transparent;
  width: 49px;
  height: 49px;
  display: grid;
  place-content: center;
  transition: var(--transitions);
}

.socialIcons a:hover {
  background-color: var(--primary-color);
  border-color: transparent;
  color: #fff;
}

.logo {
  font-size: 40px;
  font-family: "Poppins";
  color: var(--heading-color);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
}

.logo span {
  color: var(--primary-color);
}
