* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.login-body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.login-container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.login-btn {
  width: 100%;
  padding: 10px;
  border: none;
  background: #667eea;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background: #5a67d8;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

.input-group input:focus {
  border-color: #667eea;
}

.extra-links {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
}

.extra-links a {
  text-decoration: none;
  color: #667eea;
}

.extra-links a:hover {
  text-decoration: underline;
}

.alert-danger {
  color: red;
  margin-bottom: 10px;
  text-align: center;
}