body, input, button, label, h2, .login-error {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
  background: linear-gradient(125deg, #121624 0%, #293145 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.login-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 40% 25%, #5e6288 0, transparent 65%);
}

.login-card {
  background: rgba(255,255,255,0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  box-shadow: 0 8px 40px 0 rgba(32,38,78,0.21), 0 1.5px 8px #b0b5c8;
  padding: 58px 44px 42px 44px;
  max-width: 390px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: cardFadeIn 1s cubic-bezier(0.19,1,0.22,1);
  border: 1.6px solid #e3e5ee;
}

.login-logo {
  max-width: 142px;
  margin-bottom: 32px;
  filter: drop-shadow(0 2px 9px rgba(160,140,40,0.10));
}

.login-field {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 22px;
}

.login-field label {
  font-size: 13px;
  color: #3d4165;
  margin-bottom: 5px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.login-field input {
  padding: 10px 13px;
  border: 1.2px solid #e5e7ee;
  border-radius: 8px;
  font-size: 17px;
  background: #f6f8fa;
  color: #23337b;
  outline: none;
  font-weight: 500;
  transition: border 0.2s;
  box-shadow: 0 1.5px 4px rgba(180,180,180,0.09);
}
.login-field input:focus {
  border-color: #C5B358; /* Gold accent */
  background: #f9fbe9;
}

.login-btn {
  background: linear-gradient(95deg, #e4cb82 0%, #d0b145 100%);
  color: #232230;
  padding: 12px 0;
  width: 100%;
  font-size: 1.12rem;
  border: none;
  border-radius: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 13px 0 rgba(229,194,110,0.17), 0 1.5px 4px #cab988;
  cursor: pointer;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.21s, box-shadow 0.18s;
}

.login-btn:hover {
  background: linear-gradient(92deg, #f8ecb8 0%, #cfb35f 100%);
  color: #121624;
  box-shadow: 0 3px 18px 0 #eedba580, 0 2px 6px #cab988;
}

.login-error {
  color: #d7263d;
  font-size: 1.02rem;
  margin-top: 18px;
  min-height: 25px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(38px);}
  to   { opacity: 1; transform: none;}
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .login-card {
    padding: 32px 11vw 20px 11vw;
    max-width: 97vw;
  }
  .login-logo { max-width: 95px; }
}

.login-field input {
  font-size: 1.07rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}