@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");

* {
  padding: 0;
  margin: 0;
}
body {
  font-family: "Montserrat", sans-serif;
  /* display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; */
  overflow: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  background: #f8f6f0;
  height: 4rem;
}

.loomLogo {
  width: 14rem;
  margin: 0.5rem 2rem;
}

section {
  height: 27em;
}
.heading {
  text-align: center;
  position: relative;
  top: 10%;
  color: #212121;
}
.heading h1 {
  color: #212121;
  font-weight: 700;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 25em;
}
.form {
  display: flex;
  flex-direction: column;
}
.form label {
  font-size: 18px;
}
/* #my-signin2 {
  margin: 18px;
  width: 307px;
  height: 61px;
  text-align: center;
  border-radius: 8px;
  background-color: transparent;
  border: 2px solid hsla(240, 8%, 46%, 0.2);
  color: #212121;
  font-weight: 600;
  font-size: 18px;
} */

.option {
  position: relative;
  margin: 1.2rem;
  color: hsla(240, 8%, 46%, 0.2);
  font-weight: 900;
  font-size: 17px;
}
.option::after {
  content: "";
  border-top: 3px solid hsla(240, 8%, 46%, 0.2);
  width: 185px;
  position: absolute;
  top: 12px;
  left: 25px;
}
.option::before {
  content: "";
  border-top: 3px solid hsla(240, 8%, 46%, 0.2);
  width: 185px;
  position: absolute;
  top: 12px;
  left: -195px;
  height: -2px;
}
.form input {
  width: 302px;
  margin: 4px 0px 15px;
  border-radius: 6px;
  height: 40px;
  padding: 10px;
  border: 2px solid hsla(240, 8%, 46%, 0.2);
  color: #212121;
  font-weight: 600;
}
.form label {
  color: #212121;
  font-weight: 600;
}
.signUpBtn {
  width: 95px;
  text-align: center;
  height: 35px;
  position: relative;
  left: 106px;
  top: 6px;
  border-radius: 9px;
  background-color: #4b42ad;
  color: #f8f6f0;
  border: none;
  font-weight: 600;
  font-size: 17px;
}
.btn {
  margin: 1rem;
  /* display: flex; */
  /* justify-content: center; */
  width: 7rem;
  height: 2.2rem;
  text-align: center;
  border-radius: 19px;
  border: transparent;
  background-color: #4b42ad;
}

.btn a {
  font-size: 16px;
  color: #f8f6f0;
  letter-spacing: 2px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 900px) {
  .heading h1 {
    font-size: 2.2rem;
  }
  .form label {
    font-size: 17px;
  }
  .signUpBtn {
    width: 92px;
    height: 38px;
    font-size: 16px;
  }
  .form input {
    height: 36px;
  }

  .btn {
    width: 6rem;
    height: 2rem;
  }

  .btn a {
    font-size: 14px;
    color: #f8f6f0;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
  }
}

@media (max-width: 692px) {
  .heading h1 {
    font-size: 2rem;
  }
  .form label {
    font-size: 16px;
  }
  .signUpBtn {
    width: 90px;
    height: 38px;
    font-size: 16px;
  }
  .form input {
    height: 35px;
  }

  .btn {
    width: 6rem;
    height: 2rem;
  }

  .btn a {
    font-size: 14px;
    color: #f8f6f0;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
  }
}

@media (max-width: 500px) {
  .loomLogo{
    width: 14rem;
    margin: 0.5rem 0.5rem;
  }
  .heading h1 {
    font-size: 2rem;
  }
  .form label {
    font-size: 14px;
  }
  .signUpBtn {
    width: 90px;
    height: 35px;
    font-size: 14px;
  }
  .form input {
    height: 35px;
  }

  .btn {
    width: 6rem;
    height: 2rem;
  }

  .btn a {
    font-size: 14px;
    color: #f8f6f0;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
  }
}
