/* Login page specific styles */

.login-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
  background: radial-gradient(circle at 50% 0%, #3a1f1a 0%, #1c1210 62%);
}

.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.login-logo img {
  width: 190px;
  height: auto;
}

.login-title {
  margin-bottom: 8px;
}

.login-tabs {
  display: flex;
  gap: 6px;
  background: var(--bg-card-alt);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 20px;
}

.login-tab {
  flex: 1;
  text-align: center;
  padding: 9px 4px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--text-dim-55);
}

.login-tab.active {
  background: var(--gold);
  color: var(--bg-phone);
}

.login-code-desc {
  color: var(--text-dim-55);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.login-code-input {
  font-size: 20px;
  letter-spacing: .3em;
  text-align: center;
}

.login-demo-hint {
  color: rgba(191, 167, 94, .8);
  font-size: 12px;
  margin-bottom: 18px;
}
