@import "https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300..700&display=swap";

/* src/styles.scss */
* {
  padding: 0;
  margin: 0;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url(/images/pattern.png) repeat,
    linear-gradient(
      210deg,
      #DB00FF -10.77%,
      #00F0FF 102.3%);
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  body {
    align-items: start;
    justify-content: start;
  }
}
h1 {
  font-family: "Signika Negative", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: white;
}
p {
  font-family: "Signika Negative", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: white;
}
label {
  font-family: "Signika Negative", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: white;
}
div.container {
  height: 100%;
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
}
h1,
h1 + p {
  text-align: left;
}
@media (max-width: 1024px) {
  h1,
  h1 + p {
    text-align: center;
  }
}
@media (max-height: 750px) {
  h1,
  h1 + p {
    display: none;
  }
}
form {
  margin: 0;
  padding: 0;
  width: 50%;
}
@media (max-height: 750px) {
  form {
    transform: translateY(-20px);
  }
}
input[type=text],
input[type=email],
input[type=password] {
  outline: none;
  font-size: 16px;
  font-weight: 500;
  -webkit-user-select: text;
  user-select: text;
  letter-spacing: 1px;
  margin-top: 5px;
  border-radius: 8px;
  margin-bottom: 10px;
  width: 95%;
  height: 55px;
  padding: 0 2%;
  color: #8600FF;
  border: 4px solid #efddff;
  background-color: #fdf6ff;
}
input[type=text]::selection,
input[type=email]::selection,
input[type=password]::selection {
  color: white;
  background: #8600FF;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder {
  font-style: italic;
}
@media (max-width: 1024px) {
  input[type=text],
  input[type=email],
  input[type=password] {
    font-size: 14px;
  }
}
input[type=submit],
button[type=submit] {
  width: 40%;
  height: 60px;
  margin-top: 10px;
  margin-left: 60.3%;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFF;
  cursor: pointer;
  border-radius: 8px;
  border: 3px solid #FFF;
  background:
    #FFF linear-gradient(
      -180deg,
      #8600FF 25%,
      #be7ff9 100%);
}
.ng-invalid input[type=submit],
.ng-invalid button[type=submit] {
  opacity: 0.3;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
