@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&amp;family=Urbanist:ital,wght@0,100..900;1,100..900&amp;display=swap");

body {
  width: 100%;
  min-height: 100vh;
  font-family: "Urbanist";
  position: relative;
  background-image: url(../../../images/bg.jpg);
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  padding: 60px;
}
body::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.63);
  transform: translateZ(-1px);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0 !important;
}

a {
  text-decoration: none !important;
}
header {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  height: auto;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.logo {
  font-size: 45px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
}
.logo img {
  width: 20px;
  margin-right: 10px;
  vertical-align: top;
}
.logo span {
  color: var(--primary-color);
}

.helpline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.helpline i {
  border-radius: 50%;
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  font-size: 15px;
  color: rgb(255, 255, 255);
}

.helpline article p {
  font-size: 13px;
  color: rgb(255, 255, 255);
  font-weight: 800;
}
.helpline article h4 {
  font-size: 22px;
  color: rgb(255, 255, 255);
  font-weight: 800;
}
.mainHeading {
  font-size: 100px;
  font-weight: 900;
  color: rgb(255, 255, 255);
  line-height: 1;
}
#countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 60px 0;
  font-size: 105px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary-color);
  width: 100%;
  height: auto;
}
#countdown .timer {
  display: grid;
  place-content: center;
  border: solid 2px rgb(255, 255, 255);
  border-radius: 10px;
  box-shadow: 0px 0px 59px 0px rgba(0, 0, 0, 0.19);
  flex: 1;
  aspect-ratio: 1 / 1;
  max-width: 140px;
  max-height: 120px;
  font-family: "Jost";
  color: var(--primary-color);
}
.timer .timer-inner {
  font-weight: 900;
  font-size: 105px;

  font-size: 42px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  position: relative;
  line-height: 1;
  text-align: center;
}
.timer span {
  font-size: 20px;
  font-weight: 800;
  font-weight: normal;
  margin-top: 8px;
}
form {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  padding: 70px 70px 50px 70px;
  height: auto;
  border-radius: 13px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(94, 92, 154, 0.12);
}

form h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--secondary-color);
  text-align: center;
}
.input-field {
  margin-bottom: 30px;
  transition: 0.4s;
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 52px;
  background-color: rgb(255 255 255);
  margin-bottom: 20px;
}
.input-field input {
  border: solid 1px rgb(222, 222, 234);
  border-radius: 12px;
  width: 100%;
  transition: 0.4s;
  height: 60px;
  padding-left: 20px;
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 400;
}
.input-field input:focus,
.input-field textarea:focus {
  outline: 0;
  border-color: var(--primary-color);
}
.input-field label {
  font-size: 20px;
  color: rgb(175, 176, 192);
  position: absolute;
  left: 17px;
  transition: 0.4s;
  pointer-events: none;
  width: max-content;
  padding: 0 3px;
  background-color: rgb(255 255 255);
}
.input-field:focus-within label {
  transform: translatey(-24px);
  font-size: 15px !important;
}
.input-field input:valid + label {
  transform: translatey(-24px);
  font-size: 15px;
}
.input-field input:invalid + label {
  font-size: 20px;
}
.input-field.message {
  height: 133px;
}
.input-field.message input {
  height: 100%;
}
.input-field.message label {
  top: 15px;
}
.copyright {
  font-size: 15px;
  font-weight: normal;
  color: rgb(255, 255, 255);
}
.wirzaButton {
  width: 100%;
  height: 60px;
  border-radius: 13px;
  background-color: rgb(247, 144, 49);
  font-size: 17px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  border: solid 1px transparent;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.wirzaButton:hover {
  color: rgb(247, 144, 49);
  border-color: rgb(247, 144, 49);
  background-color: transparent;
}
.socialMedia h3 {
  font-size: 14px;
  color: rgb(62, 63, 94);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 24px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}
.socialMedia h3::after,
.socialMedia h3::before {
  content: "";
  display: block;
  background-color: rgb(234, 234, 245);
  width: 50px;
  height: 1px;
}
.socialMedia i {
  border-radius: 11px;
  background-color: rgb(55, 99, 210);
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
  color: rgb(255, 255, 255);
}
.socialMedia .fa-twitter {
  background-color: rgb(26, 188, 255);
}
.socialMedia .fa-twitch {
  background-color: rgb(123, 93, 250);
}
.socialMedia .fa-youtube {
  background-color: rgb(253, 67, 79);
}
