/* ==========================================================================
   🔑 ЭКРАН АВТОРИЗАЦИИ / LOGIN PAGE
   ========================================================================== */

.login-container {
  background-color: var(--bg-card-white);
  border-radius: 32px;
  padding: 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.logo-image {
  max-width: 240px;
  height: auto;
  object-fit: contain;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 11px;
  color: var(--color-navy-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  padding: 14px 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  outline: none;
  font-size: 14px;
  background-color: var(--bg-card-white);
  font-family: var(--font-body);
  transition: all 0.2s ease;
}

.form-input:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px var(--color-orange-glow);
}

.btn-primary {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  border-radius: 14px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.btn-primary:hover {
  background-color: var(--color-orange);
  box-shadow: 0 6px 20px rgba(255, 92, 0, 0.25);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.footer-text {
  color: var(--color-navy-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}

.text-center {
  text-align: center;
}
