@import url("https://fonts.googleapis.com/css2?family=Poppins: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&family=Raleway:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

body {
  width: 100%;
  height: auto;
  font-family: "Poppins";
  position: relative;
}
.quiz {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
  background-image: url(../../../images/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}
header {
  min-height: 120px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 0 80px;
}
header > * {
  position: relative;
  z-index: 2;
}
header .headerBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0 !important;
}
.logo {
  font-size: 40px;
  font-family: "Poppins";
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
}
.logo img {
  width: 18px;
  margin-right: 10px;
  vertical-align: top;
}
.logo span {
  color: var(--primary-color);
}
.mainHeading {
  font-size: 80px;
  font-weight: normal;
}
.mainHeading strong {
  font-size: 100px;
  font-weight: 900;
}

.form {
  border-radius: 12px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(94, 92, 154, 0.12);
  margin-left: auto;
  min-height: 500px;
  padding: 65px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 100%;
  position: relative;
  height: 100%;
  z-index: 100000;
}
.sideImg {
  width: 70%;
}
.form-title {
  font-size: 26px;
  color: var(--text-color);
  font-weight: bold;
  text-align: center;
  margin-bottom: 70px !important;
}
.input-field {
  border: solid 1px rgb(222, 222, 234);
  margin-bottom: 30px;
  transition: 0.4s;
  border-radius: 13px;
  position: relative;
  display: grid;
  align-items: center;
  /* opacity: 0; */
  width: 100%;
  height: 52px;
  min-height: 52px;
  background-color: var(--bg-color);
}
.input-field input {
  border: solid 1px var(--border-color);
  border-radius: 12px;
  width: 100%;
  transition: 0.4s;
  height: 100%;
  padding-left: 20px;
  font-size: 20px;
  color: var(--field-text-color);
  font-weight: bold;
}
.input-field input:focus {
  outline: 0;
  border-color: var(--secondary-color);
}
.input-field label {
  font-size: 20px;
  color: var(--label-color);
  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;
}
.rememberme {
  display: flex;
  align-content: center;
  height: auto;
  margin-bottom: 30px;
}
.rememberme label {
  font-size: 15px;
  color: var(--field-text-color);
  font-weight: bold;
  margin-left: 10px;
}
.rememberme input[type="checkbox"] {
  -webkit-appearance: none;
  border-radius: 6px;
  background-color: rgb(35, 210, 226);
  width: 22px;
  height: 22px;
  position: relative;
  cursor: pointer;
}
.rememberme input[type="checkbox"]::before {
  content: "X";
  font-family: "Titillium Web";
  font-weight: 900;
  font-size: 18px;
  color: rgb(255, 255, 255);
  width: 100%;
  transition: 0.4s;
  height: 100%;
  position: absolute;
  text-align: center;
  line-height: 22px;
}
.rememberme input[type="checkbox"]:checked::before {
  content: "\f00c";
  font-family: "Font Awesome 5 free";
  font-size: 16px;
}
.forget {
  font-size: 15px;
  color: rgb(175, 176, 192);
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 30px;
}
.forget:hover {
  color: var(--secondary-color);
}
.login-btn button {
  border-radius: 12px;
  background-color: rgb(247, 144, 49);
  width: 100%;
  transition: 0.4s;
  height: 54px;
  font-size: 20px;
  margin-bottom: 40px;
  border: 0;
  position: relative;
  color: rgb(255, 255, 255);
  font-weight: bold;
  overflow: hidden;
}
.login-btn .signup {
  background-color: var(--primary-color);
}
.login-btn button::before {
  content: "GO!";
  font-size: 20px;
  font-weight: bold;
  background-color: var(--field-text-color);
  color: rgb(255, 255, 255);
  line-height: 54px;
  display: block;
  transition: 0.4s;
  height: 100%;
  position: absolute;
  top: 0;
  left: -65px;
  width: 65px;
}
.login-btn button:hover::before {
  left: 0;
}
.login-btn button:hover {
  padding-left: 65px;
}

.divide-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.divide-heading span {
  font-size: 15px;
  color: var(--field-text-color);
  font-weight: bold;
  text-align: center;
  background-color: var(--bg-color);
  padding: 0 20px;
  width: max-content;
  margin: 0 auto;
  display: block;
}

.divide-heading::after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: rgb(234, 234, 245);
  height: 1px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 10px;
  z-index: -1;
}
.social-signup {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  justify-content: center;
}
.social-signup a {
  border-radius: 10px;
  background-color: var(--field-text-color);
  width: 40px;
  height: 40px;
  display: grid;
  justify-content: center;
  align-content: center;
  text-decoration: none;
  margin: 0 7px;
}
.social-signup a.facebook {
  background-color: rgb(55, 99, 210);
}
.social-signup a.twitter {
  background-color: rgb(26, 188, 255);
}
.social-signup a.twitch {
  background-color: rgb(123, 93, 250);
}
.social-signup a.youtube {
  background-color: rgb(253, 67, 79);
}
.social-signup a i {
  color: rgb(255, 255, 255);
  font-size: 15px;
}
