/* ================= LOGIN PAGE ================= */

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(
    rgba(43, 122, 120, 0.8),
    rgba(43, 122, 120, 0.8)
  ),
  url("../img/background.jpg") center / cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  width: 380px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.login-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #2b7a78;
  font-weight: 700;
}

.login-box form input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.login-box form input:focus {
  border-color: #2b7a78;
}

.login-box button {
  width: 100%;
  padding: 12px;
  background-color: #2b7a78;
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.login-box button:hover {
  background-color: #205e5c;
}

.login-box .info {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #555;
}
