body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Varela Round', 'Roboto', sans-serif;
}

.login-bg {
  min-height: 100vh;
  width: 100vw;
  background: linear-gradient(180deg, #7c2fff 0%, #be90ff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-header {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 38px;
  letter-spacing: 2px;
}

.login-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 48px rgba(98,0,234,0.18);
  padding: 38px 32px 28px 32px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1.5px solid #e0c9ff;
}

.login-title {
  color: #222;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 0.5px;
}

.login-label {
  font-weight: 600;
  color: #6200ea;
  margin-top: 14px;
  margin-bottom: 6px;
  display: block;
  font-size: 1.08rem;
  letter-spacing: 0.1px;
}

.login-input {
  width: 95%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1.5px solid #e0c9ff;
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-family: inherit;
  background: #f8f8fc;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(98,0,234,0.04);
}

.login-input:focus {
  border: 1.5px solid #7c2fff;
  box-shadow: 0 2px 8px rgba(98,0,234,0.08);
}

.login-btn {
  width: 100%;
  margin-top: 22px;
  background: #7c2fff;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 0;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(98,0,234,0.10);
  transition: background 0.2s, transform 0.2s;
}

.login-btn:hover {
  background: #be90ff;
  transform: scale(1.03);
}

.login-error {
  color: #d32f2f;
  font-size: 1rem;
  margin-top: 8px;
  text-align: center;
  display: none;
}
