/* General Page Styling */
body {
  background: linear-gradient(to bottom right, #13162c, #1b1d36);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Login Container */
.login-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 400px;
}

/* Logo and Heading */
.login-container h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Input Fields */
.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: left;
}

.field input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
}

.field input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

/* Remember Me Checkbox */
.field input[type="checkbox"] {
  width: auto;
  margin-right: 5px;
}

/* Login Button */
.actions input[type="submit"] {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: #ffcc00;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.actions input[type="submit"]:hover {
  background: #e6b800;
}

/* Forgot Password Link */
.forgot-password {
  display: block;
  margin-top: 10px;
  color: #ffcc00;
  text-decoration: none;
  font-size: 14px;
}

.forgot-password:hover {
  text-decoration: underline;
}
