body {
  background-color: #0E1A2B;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

.logo-top {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.logo-top img {
  width: 140px;
  height: auto;
}

.login-container {
  max-width: 400px;
  margin: 0 auto;
  background-color: #16253c;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  background-color: #0e1a2b;
  color: #fff;
  font-size: 15px;
}

.login-form input:focus {
  outline: 2px solid #ff9900;
}

.btn-primary.full {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #ff9900, #f05800);
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary.full:hover {
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.4);
}

.error {
  background-color: #b00020;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 20px;
}

.forgot-link,
.register-link {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
}

.forgot-link a,
.register-link a {
  color: #ff9900;
  text-decoration: none;
}

.divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
  font-size: 14px;
  color: #ccc;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: #ccc;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #333;
  border-radius: 6px;
  padding: 10px 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: all 0.2s;
}

.google-btn img {
  width: 20px;
  height: 20px;
}

.google-btn:hover {
  box-shadow: 0 0 12px rgba(255,153,0,0.4);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 500px) {
  .login-container {
    margin: 0 20px;
  }

  .google-btn {
    flex-direction: row;
    justify-content: center;
  }
}
