body {
  margin: 0;
  font-family: 'Prompt', sans-serif;
  background-color: #0a1e3a;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  padding-top: 40px;
}

.logo {
  width: 80px;
  margin-bottom: 10px;
}

.welcome {
  font-size: 18px;
  color: #FFD700;
  margin: 0;
}

.brand {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700;
  margin: 5px 0;
}

.subtitle {
  font-size: 13px;
  color: #f2f2f2;
  margin-bottom: 25px;
}

.login-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  width: 90%;
  max-width: 350px;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.login-title {
  color: #444;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.login-box input {
  width: 100%;
  padding: 12px 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.forgot {
  text-align: right;
  margin-bottom: 15px;
}

.forgot a {
  color: #3399ff;
  font-size: 13px;
  text-decoration: none;
}

.login-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(90deg, #3399ff, #007bff);
  color: white;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.login-btn:hover {
  opacity: 0.9;
}

.register {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.register a {
  color: #3399ff;
  text-decoration: none;
}
