/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to right, #141e30, #243b55);
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Login Box */
.login-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  width: 320px;
  color: white;
  text-align: center;
}

.login-container h2 {
  margin-bottom: 25px;
  font-size: 2em;
}

.input-group {
  position: relative;
  text-align: left;
  margin-bottom: 25px;
}

.input-group label {
  display: block;
  font-size: 0.95em;
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  padding: 10px 40px 10px 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1em;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 37px;
  cursor: pointer;
  color: #ccc;
}

/* Button */
button {
  width: 100%;
  background: #00b4db;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #0083b0;
}

/* Note */
.note {
  margin-top: 20px;
  font-size: 0.9em;
}

.note a {
  color: #00b4db;
  text-decoration: none;
}

.spanmsg{
  color: red;
}


