body {
   font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #141e30, #243b55);
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 40px 20px;
  color: white;
  padding-top: 70px;
  text-align: center;
 
  /* background-image: url('cyber-bg.jpg'), linear-gradient(to right, #141e30, #243b55); */
  /* background: linear-gradient(to right, #141e30, #243b55), url('cyber-bg.jpg'); */
  background: 
    linear-gradient(to right, rgba(31,64,55,0.7), rgba(153,242,200,0.3), rgba(0,210,255,0.4)),
    url('cyber-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-container {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}

.login-container h2 {
  margin-bottom: 20px;
  color: #00bcd4;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  color: #e0e0e0;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #00bcd4;
  border-radius: 6px;
  font-size: 16px;
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.input-group input:focus {
  outline: none;
  border-color: #38a169;
  background: rgba(0,188,212,0.07);
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.options a {
  text-decoration: none;
  color: #00bcd4;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #00bcd4;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,188,212,0.15);
  transition: background 0.3s, box-shadow 0.3s;
}

button:hover {
  background-color: #0097a7;
  box-shadow: 0 4px 16px rgba(0,188,212,0.25);
}

.register-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.homepagelink {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
  .login-container {
    padding: 20px 10px;
    max-width: 95vw;
  }
}






