*,
*::before,
*::after {
  box-sizing: border-box; }

.auth-page {
  margin: 0;
  background-color: #f1f0f8;
  color: #2d1982;
  font-family: "Helvetica Neue LT Std", Arial, Helvetica, sans-serif; }

.auth {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 1.25rem; }
  .auth__card {
    width: 100%;
    max-width: 26rem;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(45, 25, 130, 0.12);
    text-align: center; }
  .auth__logo {
    display: inline-block;
    width: 160px;
    max-width: 60%;
    margin-bottom: 2rem; }
    .auth__logo img {
      display: block;
      width: 100%;
      height: auto; }
  .auth__title {
    margin: 0 0 1.5rem;
    font-weight: 500;
    font-size: clamp(1.4rem, 5vw, 1.9rem);
    color: #2d1982; }
  .auth__hint {
    margin: 0 0 1.25rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
    color: #8e8179;
    background: rgba(45, 25, 130, 0.05);
    border-radius: 8px; }
    .auth__hint em {
      font-style: italic; }
  .auth__form {
    text-align: left; }
  .auth__label {
    display: block;
    margin: 1rem 0 0.35rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d1982; }
  .auth__input {
    width: 100%;
    padding: 0.7rem 0.85rem;
    font-size: 1rem;
    color: #2d1982;
    background: #f6f5fb;
    border: 1px solid #d6d2ec;
    border-radius: 8px;
    -webkit-transition: border-color 0.15s ease, box-shadow 0.15s ease;
    -moz-transition: border-color 0.15s ease, box-shadow 0.15s ease;
    -ms-transition: border-color 0.15s ease, box-shadow 0.15s ease;
    -o-transition: border-color 0.15s ease, box-shadow 0.15s ease;
    transition: border-color 0.15s ease, box-shadow 0.15s ease; }
    .auth__input:focus {
      outline: none;
      border-color: #2d1982;
      box-shadow: 0 0 0 3px rgba(45, 25, 130, 0.15); }
  .auth__remember {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 1rem 0 0;
    font-size: 0.9rem;
    color: #8e8179; }
  .auth__submit {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background: #2d1982;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    -webkit-transition: background-color 0.15s ease;
    -moz-transition: background-color 0.15s ease;
    -ms-transition: background-color 0.15s ease;
    -o-transition: background-color 0.15s ease;
    transition: background-color 0.15s ease; }
    .auth__submit:hover, .auth__submit:focus {
      background: #3c21ad; }
  .auth__link {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #2d1982;
    text-decoration: underline; }
    .auth__link:hover {
      color: #3c21ad; }
  .auth__error, .auth__success {
    margin: 0 0 1.25rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
    border-radius: 8px;
    text-align: left; }
  .auth__error {
    color: #9d242d;
    background: rgba(215, 80, 90, 0.12);
    border: 1px solid rgba(215, 80, 90, 0.35); }
  .auth__success {
    color: #197316;
    background: rgba(43, 201, 38, 0.12);
    border: 1px solid rgba(43, 201, 38, 0.35); }

@media (prefers-color-scheme: dark) {
  .auth-page {
    background-color: #1a1a1a;
    color: white; }

  .auth__card {
    background: #262433;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45); }
  .auth__title, .auth__label, .auth__input, .auth__link {
    color: white; }
  .auth__input {
    background: #1f1d2b;
    border-color: #3d3a54; }
  .auth__remember {
    color: #b4b4b4; } }

/*# sourceMappingURL=login.css.map */
