body {
  /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
  background: linear-gradient(135deg, #7cb6e9 0%, #165083 100%);
  height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  font-family: 'Segoe UI', sans-serif;
}

.login-container {
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
  text-align: center;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group input {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  background: transparent;
}

.input-group label {
  position: absolute;
  top: 10px;
  left: 0;
  color: #999;
  transition: all 0.3s ease;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label {
  top: -15px;
  font-size: 0.8rem;
  color: #667eea;
}

button {
  width: 100%;
  padding: 12px;
  /*background: #4f46e5;*/
  background: #379be0;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}

button:hover {
  background: #4338ca;
}

.forgot-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

.footer a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer span {
  margin: 0 0.5rem;
  opacity: 0.6;
}