/* Login dimensions, colors and typography from the saved authorization page. */
.auth-page {
  width: 100%; min-height: 100vh; min-height: 100dvh; padding: 40px;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  background: linear-gradient(180deg,rgba(255,255,255,.1) 0%,rgba(0,82,255,.1) 100%), #fff;
  color: #262e40; font-family: Inter,sans-serif; line-height: normal;
}
.auth-page *, .auth-page *::before, .auth-page *::after { box-sizing: border-box; }
.auth-brand { margin-bottom: 42px; display: flex; align-items: center; gap: 15px; }
.auth-brand img { display: block; }
.auth-brand span { font-family: Montserrat,sans-serif; font-weight: 800; font-size: 22px; line-height: 22px; }
.auth-card { text-align: center; background: #fff; border-radius: 32px; width: 540px; max-width: 100%; padding: 40px; }
.auth-card h1 { margin: 0; font-weight: 400; font-size: 32px; line-height: 120%; }
.auth-description { margin: 10px 0 40px; font-weight: 400; font-size: 18px; line-height: 24px; color: #4c5c80; }
.auth-form { display: flex; flex-direction: column; gap: 20px; text-align-last: left; }
.auth-field { background: #f9f9fb; border: 1px solid rgba(127,143,179,.12); border-radius: 16px; height: 48px; display: flex; align-items: center; padding: 0 14px; min-width: 120px; transition: .3s; position: relative; }
.auth-field svg { margin-right: 14px; flex-shrink: 0; color: #7f8fb3; }
.auth-field input { border: 0; padding: 0; margin: 0; background: transparent; color: #262e40; font-weight: 500; font-size: 16px; line-height: 16px; flex: 1 1; width: 100%; min-width: 0; font-family: Inter,sans-serif; outline: none; box-shadow: none; }
.auth-field input::placeholder { color: #7f8fb3; font-weight: 500; opacity: 1; }
.auth-form button { border: 0; width: 100%; height: 48px; border-radius: 16px; font-family: inherit; font-weight: 500; font-size: 16px; line-height: 16px; display: flex; align-items: center; justify-content: center; padding: 0 20px; text-align: center; cursor: pointer; background: rgba(0,82,255,.08); color: #0052ff; transition: box-shadow .2s; }
.auth-form button:hover { box-shadow: 0 4px 10px rgba(18,62,112,.05); }
.auth-form button:disabled { opacity: .5; cursor: default; }
.auth-form button:focus-visible { outline: 2px solid #3375ff; outline-offset: 3px; }
.auth-field:focus-within { border-color: #3375ff; }
.auth-field.is-error { border-color: #fa3838; }
.auth-error { margin: 5px 0 0; color: #fa3838; font-size: 14px; line-height: 18px; }
@media(max-width:480px) {
  .auth-page { padding: 15px; }
  .auth-card { padding: 60px 20px; }
  .auth-card h1 { font-size: 24px; }
  .auth-field, .auth-form button { border-radius: 8px; }
}
