﻿.login {
  min-height: 88vh;
}

.login-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 6px 0;
}

.login__title {
  font-size: 1.4rem;
  font-weight: 700;
}

.login__subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.login__field {
  width: 100%;
  margin-top: 18px;
}

.login__field input {
  width: 100%;
  background: var(--card);
  border: 1px solid rgba(74, 163, 255, 0.6);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 1rem;
}

.login-status {
  min-height: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.login-status[data-state="error"] {
  color: #ff8c8c;
}

.login-status[data-state="success"] {
  color: #7fe6b5;
}

.is-hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
