/* ========================
   LOGIN PAGE DESIGN (Fixed)
   ======================== */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0b1221;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Login box container */
.login-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.4);
  width: 380px;
  text-align: center;
}

.logo {
  width: 50px;
  margin-bottom: 10px;
}

h2 {
  color: #0b1221;
  font-weight: 700;
  margin-bottom: 25px;
}

input {
  width: 90%;
  padding: 12px;
  margin: 10px auto;
  display: block;
  border: 1px solid #d1d9e6;
  border-radius: 8px;
  font-size: 15px;
  background-color: #eaf0ff;
  box-sizing: border-box;
}

button {
  width: 90%;
  padding: 12px;
  background-color: #03bafc;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

button:hover {
  background-color: #009fd8;
}

.options {
  margin-top: 15px;
  font-size: 14px;
}

.options a {
  text-decoration: none;
  color: #0b1221;
  font-weight: 600;
  transition: color 0.3s;
}

.options a:hover {
  color: #03bafc;
}

.options span {
  margin: 0 8px;
  color: #999;
}
