* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
  font-size: 2.5vh;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/static/shop/img/clover-back.f813f246de4a.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100vw;
}

section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 46vh;
}
section a {
  display: flex;
  justify-content: center;
  transition: transform 0.2s;
}
section a:hover {
  transform: scale(1.05);
}
section .logo {
  width: 100%;
}
section .logo img {
  width: 45%;
  margin: 12%;
}
section .signin {
  width: 100%;
}
section .signin .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5vh;
}
section .signin .content .form {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2vh;
}
section .signin .content .inputBox {
  width: 100%;
}
section .signin .content .inputBox input {
  padding: 5%;
  width: 100%;
  border-radius: 10vh;
  border: 0px solid #fff;
  font-weight: bold;
}
section .signin .content .extra {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vh;
}
section .signin .content .extra .links {
  width: 90%;
  display: flex;
  justify-content: space-between;
}
section .signin .content .extra .links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
section .signin .content .extra .links a:hover {
  transform: scale(1.1);
}
section .signin .content .extra .links a:active {
  transform: scale(0.9);
}
section .signin .content .extra .googleLogin {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 3%;
  border-radius: 10vh;
  text-decoration: none;
  color: black;
  gap: 2vh;
  transition: transform 0.2s;
}
section .signin .content .extra .googleLogin:hover {
  transform: scale(1.05);
}
section .signin .content .extra .googleLogin:active {
  transform: scale(0.95);
}
section .signin .content .extra .googleLogin:visited {
  color: black;
}
section .signin .content .extra .googleLogin span {
  font-size: 3vh;
  font-weight: bold;
}
section .signin .content .extra .googleLogin img {
  width: 3vh;
}
section .signin .content .action-button {
  width: 100%;
  display: flex;
}
section .signin .content .action-button .submit input {
  margin-left: -0.7vh;
  border-radius: 0 10vh 10vh 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
  box-shadow: none;
}
section .signin .content .action-button .googleLogin {
  margin-right: -0.7vh;
  border-radius: 10vh 0 0 10vh;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}
section .signin .content .submit input {
  background: linear-gradient(#a0e418, #29a44c);
  border: none;
  font-size: 3vh;
  font-family: "Comic Sans MS", sans-serif;
  color: white;
  box-shadow: 0px 1vh 2vh rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  cursor: pointer;
  border-radius: 10vh;
}
section .signin .content .submit input:hover {
  transform: scale(1.05);
}
section .signin .content .submit input:active {
  transform: scale(0.95);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.custom-alert {
  position: fixed;
  z-index: 8;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-startd;
  align-items: flex-end;
}
.custom-alert .modal-content {
  flex-direction: column;
  border: 1px solid #888;
  width: 60vh;
  max-width: 50vw;
  margin-top: 3vh;
  margin-right: 3vh;
  border-radius: 1vh;
  border: 0px solid red;
  color: white;
}
.custom-alert .modal-content .modal-body {
  padding: 0 2vh 2vh 2vh;
  margin: max(1.5vw, 1.5vh);
}
.custom-alert .modal-content .modal-header {
  display: flex;
  justify-content: flex-end;
  padding: 1vh 2vh 0 1vh;
}
.custom-alert .modal-content .close {
  text-align: left;
  cursor: pointer;
}

/*# sourceMappingURL=login.css.7c57b0fada79.map */
