*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

main {
  background-color: #731358;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .main-wrapper {
  width: 390px;
  background-color: white;
  border-radius: 36px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}
main .main-wrapper .error-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(0, 0, 0, 0.75);
  width: calc(100vw - 1rem);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0.5rem;
  padding: 0.5rem;
  border-radius: 15px;
  background-color: #f8abff;
  border: 1px solid rgba(51, 51, 51, 0.15);
  transform: translateY(-130%);
  transition: transform 0.5s ease;
}
main .main-wrapper .error-wrapper .error-inner-wrapper {
  position: relative;
  width: calc(100% - 30px);
  height: 100%;
}
main .main-wrapper .error-wrapper .error-inner-wrapper svg {
  position: absolute;
  top: 0;
  right: -30px;
  color: rgba(0, 0, 0, 0.75);
}
main .main-wrapper .error-wrapper .error-inner-wrapper svg:hover {
  cursor: pointer;
}
main .main-wrapper .error-wrapper .error-inner-wrapper .error-message {
  padding: 0.5rem;
  text-align: center;
}
main .main-wrapper .inlog-wrapper {
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .main-wrapper .inlog-wrapper .svg-wrapper {
  height: fit-content;
  border-radius: 12px;
  background-color: #731358;
  display: flex;
}
main .main-wrapper .inlog-wrapper .svg-wrapper svg {
  width: 100%;
  height: 100%;
  padding: 4px;
}
main .main-wrapper .inlog-wrapper .inlog-title {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.5rem;
}
main .main-wrapper .inlog-wrapper .inlog-subtitle {
  margin-bottom: 2.5rem;
  font-weight: 400;
  color: rgba(51, 51, 51, 0.7);
  font-size: 0.875rem;
}
main .main-wrapper .inlog-wrapper input[type=email] {
  border-radius: 0.5rem;
  border-width: 1px;
  border-style: solid;
  font-size: 1rem;
  outline-offset: 2px;
  border-color: transparent;
  background-color: rgba(51, 51, 51, 0.08);
  padding: 0.5rem 0.75rem;
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
  outline: none;
  color: rgba(0, 0, 0, 0.95);
}
main .main-wrapper .inlog-wrapper input[type=email]:focus {
  outline-offset: -2px;
  outline-width: 2px;
  outline-style: solid;
  outline-color: #731358;
}
main .main-wrapper .inlog-wrapper input[type=email]:hover {
  outline-offset: -2px;
  outline-width: 2px;
  outline-style: solid;
  outline-color: rgba(51, 51, 51, 0.15);
}
main .main-wrapper .inlog-wrapper button {
  margin-top: 1rem;
  width: 100%;
  background-color: #731358;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  height: 2.5rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0.5rem;
}
main .main-wrapper .inlog-wrapper button div {
  font-weight: 600;
  font-size: 1rem;
}
main .main-wrapper .inlog-wrapper button:disabled {
  cursor: default;
  position: relative;
}
main .main-wrapper .inlog-wrapper button:disabled:after {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  filter: opacity(0.5);
  width: 110%;
  height: 120%;
}
@media screen and (max-width: 450px) {
  main .main-wrapper .inlog-wrapper .inlog-title {
    color: white;
  }
  main .main-wrapper .inlog-wrapper .inlog-subtitle {
    color: rgba(204, 204, 204, 0.7);
  }
  main .main-wrapper .inlog-wrapper input[type=email] {
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
  }
  main .main-wrapper .inlog-wrapper input[type=email]::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  main .main-wrapper .inlog-wrapper form {
    width: 90%;
  }
  main .main-wrapper .inlog-wrapper input[type=email]:hover,
  main .main-wrapper .inlog-wrapper input[type=email]:active,
  main .main-wrapper .inlog-wrapper input[type=email]:focus {
    background-color: rgba(255, 255, 255, 0.2);
  }
  main .main-wrapper .inlog-wrapper button {
    background-color: white;
    border: none;
  }
  main .main-wrapper .inlog-wrapper button div {
    color: #731358;
  }
  main .main-wrapper .inlog-wrapper button:disabled {
    background-color: #AB719B;
  }
  main .main-wrapper .inlog-wrapper button:disabled:after {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  main .main-wrapper .inlog-wrapper {
    padding: 2.5rem 0;
  }
}
@media screen and (max-width: 450px) {
  main .main-wrapper {
    width: 100vw;
    background-color: transparent;
  }
}

/*# sourceMappingURL=index.css.map */
