@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --almostYellow: #d1ac00;
  --almostDarkBlue: #004643;
  --grey: #484848;
  --almostWhite: #fbf6da;
  --almostBlack: #0c1618;
  --white: #fff;
  --black: #000;
  --zred: #949494;
  --padding-of-40px: 40px;
  --margin-of-40px: 40px;
  --gap-of-40px: 40px;
}

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

body {
  outline: none;
  border: none;
  font-family: "Poppins", sans-serif;
}

/* SIGN UP SECTION */
/* ########## SIGN UP STYLING SECTION ########## */
.lazy-section {
  transform: translateY(80px);
  opacity: 0;
}

.lazy-section.visible {
  opacity: 1;
  transform: translateY(0px);
  transition-property: opacity, transform;
  transition-duration: 1s, 2s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.signup {
  width: 100%;
  display: flex;
  overflow: hidden;
  height: 100vh;
}

.theform,
.signup-bg-image {
  width: 50%;
}

.theform {
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup form {
  width: 80%;
}

.signup form h1 {
  padding-top: var(--margin-of-40px);
  font-size: 1.3em;
}

.signup form .google-button {
  width: 100%;
  border: 1px solid var(--almostDarkBlue);
  outline-width: 0;
  background-color: transparent;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

form .google-button p {
  color: var(--almostDarkBlue);
  font-size: 1.2em;
  font-weight: bold;
}

form .google-button img {
  width: 35px;
}

form .hr-demarcation {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

form .hr-demarcation p {
  display: inline-block;
}

form .hr-demarcation .left-hr,
form .hr-demarcation .right-hr {
  width: 50%;
  border: 1px solid grey;
  background-color: grey;
}

form .input-container {
  align-items: center;
  border: 1px solid var(--almostDarkBlue);
  border-radius: 8px;
  display: flex;
  padding: 0 10px;
  margin: 20px 0;
}

form .input-container i {
  display: inline-block;
  padding-right: 10px;
}

form .input-container input {
  width: 100%;
  padding: 10px 0;
  outline-width: 0;
  border: 0;
  background-color: transparent;
}

form .register-btn {
  width: 100%;
  border: 1px solid var(--almostDarkBlue);
  outline-width: 0;
  background-color: var(--almostDarkBlue);
  color: var(--white);
  cursor: pointer;
  border-radius: 8px;
  padding: 10px;
  margin: 20px 0;
  font-weight: bold;
  transition: ease-in 0.5s;
}

form .register-btn:hover {
  background-color: transparent;
  color: var(--almostDarkBlue);
}

form .terms_privacy {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-around;
  align-items: center;
  gap: 100px;
}

form .terms_privacy input[type="checkbox"] {
  transform: scale(1.5);
}

form .terms_privacy a {
  color: var(--almostYellow);
}

form .signup-link {
  color: var(--almostYellow);
  padding-left: 5px;
  text-decoration: none;
}

.signup .signup-bg-image {
  height: 100%;
}

.signup .signup-bg-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

/* MEDIA QUERY FOR 720PX */
@media screen and (max-width: 720px) {
  .theform {
    width: 100%;
    padding-top: 50px;
    /* height: 100%; */
  }

  .signup {
    flex-direction: column;
    overflow: scroll;
  }

  .signup-bg-image {
    display: none;
  }

}