.login-body {
  background: linear-gradient(to right, #eef2f3, #8e9eab);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  font-family: "Segoe UI", sans-serif;
}

.login-wrapper {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
}

.login-wrapper h2 {
  text-align: center;
  margin-bottom: 1.8rem;
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.75rem;
}

.login-wrapper .form-label {
  margin-bottom: 0.5rem;
  display: block;
  color: #34495e;
  font-weight: 500;
}

.login-wrapper input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 0.95rem;
}

.login-wrapper input:focus {
  border-color: #007bff;
  outline: none;
}

.btn-login {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 10px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.btn-login:hover {
  background-color: #0056b3;
}

.login-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.login-footer a {
  color: #007bff;
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}
