@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;1,100;1,400&display=swap");
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  min-width: 350px;
  min-height: max(350px, 100vh);
  min-height: max(350px, 100dvh);
  box-sizing: border-box;
  font-family: "lato", Helvetica, sans-serif;
  background-color: var(--white);
  color: var(--dark-blue);
}
@media (max-width: 56.25em) {
  body {
    gap: 1.5625rem;
  }
}

main {
  position: relative;
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
@media (max-width: 56.25em) {
  main {
    gap: inherit;
  }
}

select {
  background-color: inherit;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/lato-light-iArSMxs.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lato-regular-CzNc_Ij.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/lato-bold-5CmM-eX.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
h1,
h2,
h3 {
  font-weight: 400;
  margin: 0;
}

h1 {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.09375rem;
  text-align: center;
}

h2 {
  text-transform: uppercase;
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
  text-align: center;
  cursor: pointer;
}

i {
  font-style: normal;
  color: var(--dark-grey);
  font-size: 0.625rem;
}

p {
  margin: 0;
  font-weight: 300;
}

:root {
  --dark-blue: hsl(216, 48%, 14%);
  --medium-blue: hsl(221, 10%, 38%);
  --light-blue: hsl(216, 48%, 58%);
  --light-grey: hsl(0, 0%, 94%);
  --medium-grey: hsl(0, 0%, 70%);
  --dark-grey: hsl(0, 0%, 54%);
  --white: hsl(0, 0%, 100%);
  --light-red: hsl(0, 100%, 94%);
  --medium-red: hsl(0, 67%, 59%);
  --dark-red: hsl(0, 56%, 39%);
  --light-yellow: hsl(48, 100%, 94%);
  --medium-yellow: hsl(48, 100%, 70%);
  --dark-yellow: hsl(48deg 81% 48%);
  --light-green: hsl(120, 100%, 94%);
  --medium-green: hsl(120, 48%, 58%);
  --dark-green: hsl(120, 56%, 44%);
}

.form {
  width: min(80%, 50rem);
  height: max-content;
  box-sizing: border-box;
  max-width: 56.25rem;
  border-radius: 2.5rem;
  padding: 0.625rem 0.3125rem;
  gap: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
}
.form__title {
  margin: 0.625rem 0;
}
.form-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(70%, 90vw);
  gap: 1.25rem;
}
.form-block {
  width: 100%;
  gap: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.form-block--row {
  flex-direction: row;
}
@media (max-width: 43.75em) {
  .form-block--row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
  }
}
.form-block--space-around {
  justify-content: space-around;
}
.form__element {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 0.4375rem;
}
.form__element-input {
  height: 2.5rem;
  width: 100%;
  padding: 0 1.25rem;
  box-sizing: border-box;
  border-radius: 1.25rem;
  border: var(--light-grey) solid 1px;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
}
.form__element-input-textarea {
  padding-top: 0.9375rem;
  height: 6.25rem;
  resize: none;
}
.form__element-label {
  box-sizing: border-box;
  width: 100%;
  padding: 0 0.625rem;
  font-weight: 700;
}
.form__element--invalid {
  border: var(--dark-red) solid 1px;
}
.form__element input:read-only {
  background-color: var(--light-grey);
}
.form--big {
  margin-bottom: 3.125rem;
}

.link {
  text-align: center;
  padding: 0.625rem 0.3125rem;
  font-size: small;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.link--row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}
@media (max-width: 43.75em) {
  .link--row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.link__prefix {
  color: var(--medium-grey);
}
.link__title {
  color: var(--dark-blue);
}

.btn {
  border: 0;
  border-radius: 1.875rem;
  padding: 0.9375rem 1.5625rem;
  margin: 0.625rem 0;
  text-align: center;
}
.btn--primary {
  background-color: var(--dark-blue);
  color: var(--white);
}
.btn--secondary {
  border: 1px solid var(--dark-blue);
  background-color: var(--white);
  color: var(--dark-blue);
}
.btn--danger {
  background-color: var(--dark-red);
  color: var(--white);
}
.btn:hover {
  cursor: pointer;
}

.popup {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 13vh;
  left: 1.25rem;
  z-index: 10;
  transform: translateX(-140%);
  padding: 0.625rem;
  gap: 0.625rem;
  border-radius: 0.3125rem;
  transition: translate 0.8s ease-in-out;
}
.popup--error {
  background: var(--light-red);
  border: var(--dark-red) 5px solid;
  border-width: 0 0 5px 0;
}
.popup--success {
  background: var(--light-green);
  border: var(--dark-green) 0px solid;
  border-width: 0 0 0 5px;
}
.popup--visible {
  left: 1.25rem;
  translate: 140% 0;
}
@media (max-width: 43.75em) {
  .popup--visible {
    translate: 0 100%;
  }
}
.popup__close-button {
  width: 1.25rem;
  height: 1.25rem;
}
.popup__close-button:hover {
  cursor: pointer;
}
@media (max-width: 43.75em) {
  .popup {
    transform: translateY(-100%);
    top: 0;
    left: 10%;
    right: 10%;
    border-width: 0 0 5px 0;
    flex-direction: column;
    border-radius: 0 0 1.25rem 1.25rem;
  }
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem 2.1875rem;
  width: 100%;
  min-height: 5rem;
  padding: 0 3.125rem;
  box-sizing: border-box;
}
.header__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.header__logo {
  height: 3.125rem;
  aspect-ratio: 1/1;
}
.header__login {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: inherit;
  flex-wrap: wrap;
  margin-left: auto;
}
.header__login > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.25rem;
}
.header__login-picture {
  border-radius: 50%;
  height: 3.125rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 3px solid transparent;
  box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
  transition: scale 0.15s ease-in-out;
}
.header__login-picture:active {
  scale: 0.95;
}
.header__login-link {
  height: 100%;
  color: var(--dark-grey);
  transition: color 0.3s ease;
}
.header__login-link:hover {
  color: var(--dark-blue);
}
@media (max-width: 51.875em) {
  .header__login {
    justify-content: space-evenly;
    width: 90%;
    margin: 0;
  }
}
@media (max-width: 51.875em) {
  .header {
    box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
    justify-content: center;
    padding: 1.25rem 0;
  }
}

/*# sourceMappingURL=signup.output.css.map */
