/* src/styles.scss */
:root {
  font-size: 16px;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 320px;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: rgb(50, 30, 10);
  background-color: rgb(250, 245, 240);
  line-height: 1.6;
  overflow-x: hidden;
}
@media screen and (max-width: 720px) {
  html,
  body {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}
main {
  opacity: 0;
  transition: opacity 0.2s ease;
  min-height: 100vh;
}
body.loaded main {
  opacity: 1;
}
h1 {
  font-weight: 700;
  margin: 0;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  white-space: pre-wrap;
  line-height: 1.2;
  font-size: 2rem;
}
@media screen and (min-width: 540px) {
  h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 720px) {
  h1 {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 960px) {
  h1 {
    font-size: 4.7rem;
  }
}
h2 {
  font-weight: 700;
  margin: 0;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  white-space: pre-wrap;
  line-height: 1.2;
  font-size: 1.55rem;
}
@media screen and (min-width: 540px) {
  h2 {
    font-size: 2.325rem;
  }
}
@media screen and (min-width: 720px) {
  h2 {
    font-size: 2.79rem;
  }
}
h3 {
  font-weight: 700;
  margin: 0;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  white-space: pre-wrap;
  line-height: 1.2;
  font-size: 1.25rem;
}
@media screen and (min-width: 540px) {
  h3 {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 720px) {
  h3 {
    font-size: 2.25rem;
  }
}
h4 {
  font-weight: 700;
  margin: 0;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  white-space: pre-wrap;
  line-height: 1.2;
  font-size: 1.15rem;
}
@media screen and (min-width: 540px) {
  h4 {
    font-size: 1.725rem;
  }
}
@media screen and (min-width: 720px) {
  h4 {
    font-size: 2.07rem;
  }
}
h5 {
  font-weight: 700;
  margin: 0;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  white-space: pre-wrap;
  line-height: 1.2;
  font-size: 1.125rem;
}
@media screen and (min-width: 540px) {
  h5 {
    font-size: 1.6875rem;
  }
}
@media screen and (min-width: 720px) {
  h5 {
    font-size: 2.025rem;
  }
}
h6 {
  font-weight: 700;
  margin: 0;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  white-space: pre-wrap;
  line-height: 1.2;
  font-size: 1rem;
}
@media screen and (min-width: 540px) {
  h6 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 720px) {
  h6 {
    font-size: 1.8rem;
  }
}
p {
  margin: 0;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
}
a {
  color: rgb(120, 90, 150);
  text-decoration: underline solid rgb(60, 115, 165);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:hover {
  color: rgb(50, 110, 160);
  text-decoration-color: currentColor;
}
a:visited {
  color: rgb(120, 90, 150);
}
a:active {
  color: rgb(200, 50, 0);
}
a:focus {
  text-decoration: underline 2px solid rgb(200, 50, 0);
  outline: unset;
}
button {
  border: none;
  border-radius: 0.5rem;
  padding: 0.5em 1em;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  width: fit-content;
  font-family: inherit;
}
.button--main {
  background-color: rgb(200, 50, 0);
  color: rgb(255, 255, 255);
}
.button--main:hover:not(:disabled) {
  background-color: rgb(180, 40, 0);
  color: rgb(255, 255, 255);
}
.button--main--outline {
  background-color: rgba(200, 50, 0, 0.05);
  border: 1px solid rgb(200, 50, 0);
  color: rgb(200, 50, 0);
}
.button--main--outline:hover:not(:disabled) {
  background-color: rgba(200, 50, 0, 0.2);
  color: rgb(200, 50, 0);
}
.button--main--compact {
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  margin: 0;
  width: auto;
}
.button--main--rounded {
  border-radius: 5rem;
}
.button--secondary {
  background-color: rgb(120, 70, 30);
  color: rgb(255, 255, 255);
}
.button--secondary:hover:not(:disabled) {
  background-color: rgb(110, 65, 25);
  color: rgb(255, 255, 255);
}
.button--secondary--outline {
  background-color: rgba(120, 70, 30, 0.05);
  border: 1px solid rgb(120, 70, 30);
  color: rgb(120, 70, 30);
}
.button--secondary--outline:hover:not(:disabled) {
  background-color: rgba(120, 70, 30, 0.2);
  color: rgb(120, 70, 30);
}
.button--secondary--compact {
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  margin: 0;
  width: auto;
}
.button--secondary--rounded {
  border-radius: 5rem;
}
.button--tertiary {
  background-color: rgb(234, 221, 202);
  color: rgb(60, 35, 10);
}
.button--tertiary:hover:not(:disabled) {
  background-color: rgb(220, 205, 180);
  color: rgb(60, 35, 10);
}
.button--tertiary--outline {
  background-color: rgba(234, 221, 202, 0.05);
  border: 1px solid rgb(234, 221, 202);
  color: rgb(234, 221, 202);
}
.button--tertiary--outline:hover:not(:disabled) {
  background-color: rgba(234, 221, 202, 0.2);
  color: rgb(234, 221, 202);
}
.button--tertiary--compact {
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  margin: 0;
  width: auto;
}
.button--tertiary--rounded {
  border-radius: 5rem;
}
.button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.form__button {
  width: 60%;
  padding: 1.25rem;
  margin-top: 0.75rem;
  align-self: center;
  border: none;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 720px) {
  .form__button {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    border-radius: 12px;
    min-height: 3.5rem;
  }
}
.form__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.form__button:hover:not(:disabled) {
  transform: translateY(-2px);
}
@media screen and (max-width: 720px) {
  .form__button:hover:not(:disabled) {
    transform: none;
  }
}
.form__button:active {
  transform: translateY(0);
}
@media screen and (max-width: 720px) {
  .form__button:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}
.form__button:focus {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 720px) {
  .form__button:focus {
    outline: 3px solid rgb(200, 50, 0);
    outline-offset: 2px;
  }
}
.form__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media screen and (max-width: 720px) {
  .form__button:disabled {
    opacity: 0.5;
  }
}
.form__button--primary {
  background: rgb(200, 50, 0);
  color: rgb(255, 255, 255);
}
.form__button--primary:hover {
  background: rgb(180, 40, 0);
}
.form__button--secondary {
  background: rgb(255, 255, 255);
  color: rgb(50, 30, 10);
}
.form__button--secondary:hover {
  border-color: rgb(120, 70, 30);
  background: rgb(255, 255, 255);
}
.form__button--secondary:focus {
  outline: none;
  border-color: rgb(120, 70, 30);
  background: rgb(255, 255, 255);
  box-shadow:
    0 0 0 4px rgba(120, 70, 30, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.form__button--compact {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  margin: 0;
  width: auto;
}
@media screen and (max-width: 720px) {
  .form__button--compact {
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
  }
}
.form__button--inline {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  margin: 0;
  width: auto;
  align-self: stretch;
}
@media screen and (max-width: 720px) {
  .form__button--today {
    display: block;
  }
}
@media screen and (max-width: 720px) and (max-width: 540px) {
  .form__button--today {
    display: none;
  }
}
form {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: 528px;
  margin: 0 auto;
}
@media (max-width: 540px) {
  form {
    gap: 1.75rem;
    padding: 0 2rem;
  }
}
input[type=text],
input[type=date],
input[type=email],
input[type=password],
input[type=number],
textarea {
  padding: 1rem 1.25rem;
  border: 0;
  border-radius: 8px;
  font-size: 1rem;
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-family: inherit;
}
@media screen and (max-width: 720px) {
  input[type=text],
  input[type=date],
  input[type=email],
  input[type=password],
  input[type=number],
  textarea {
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
    min-height: 3rem;
    border-radius: 12px;
  }
}
input[type=text]:focus,
input[type=date]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
textarea:focus {
  outline: none;
  border-color: rgb(120, 70, 30);
  box-shadow:
    0 0 0 4px rgba(120, 70, 30, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  transform: translateY(-1px);
}
input[type=text]:hover,
input[type=date]:hover,
input[type=email]:hover,
input[type=password]:hover,
input[type=number]:hover,
textarea:hover {
  border-color: rgb(120, 70, 30);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18), inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
input[type=text].error,
input[type=date].error,
input[type=email].error,
input[type=password].error,
input[type=number].error,
textarea.error {
  border-color: rgb(190, 50, 10);
  background: rgb(255, 235, 230);
  box-shadow:
    0 0 0 2px rgba(190, 50, 10, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
input[type=text].error:focus,
input[type=date].error:focus,
input[type=email].error:focus,
input[type=password].error:focus,
input[type=number].error:focus,
textarea.error:focus {
  border-color: rgb(190, 50, 10);
  background: rgb(255, 235, 230);
  box-shadow:
    0 0 0 2px rgba(190, 50, 10, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
  outline: none;
  border-color: rgb(120, 70, 30);
  box-shadow:
    0 0 0 4px rgba(120, 70, 30, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  transform: translateY(-1px);
}
input[type=text].error:hover,
input[type=date].error:hover,
input[type=email].error:hover,
input[type=password].error:hover,
input[type=number].error:hover,
textarea.error:hover {
  border-color: rgb(190, 50, 10);
  background: rgb(255, 235, 230);
  box-shadow:
    0 0 0 2px rgba(190, 50, 10, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
  border-color: rgb(120, 70, 30);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18), inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group__label {
  display: block;
  font-weight: 600;
  color: rgb(50, 30, 10);
  font-size: 1.1rem;
}
.form-group__hint {
  font-size: 0.8rem;
  color: rgba(50, 30, 10, 0.7);
  font-style: italic;
}
.form-group__hint--important {
  font-weight: 600;
}
.form-group__hint--info {
  color: rgb(70, 130, 180);
}
.form-group__hint--success {
  color: rgb(100, 130, 60);
}
.form-group__hint--warning {
  color: rgb(200, 120, 30);
}
.form-group__hint--error {
  color: rgb(190, 50, 10);
}
.form-group__date-input {
  flex: 1;
}
.form-group__error-message {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  color: rgb(190, 50, 10);
  font-size: 0.875rem;
}

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