* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  width: 350px;
}

.login-box h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}

.input-box {
  position: relative;
  margin-bottom: 20px;
}

.input-box input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.input-box i {
  position: absolute;
  right: 15px;
  top: 12px;
  color: #fff;
}

.options {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #fff;
  margin-bottom: 20px;
}

.options label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.options a {
  color: #fff;
  text-decoration: none;
}

.login-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background-color: #2ecc71;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.login-btn:hover {
  background-color: #27ae60;
}

.register-link {
  text-align: center;
  margin-top: 15px;
  color: white;
  font-size: 13px;
}

.register-link a {
  color: #fff;
  text-decoration: underline;
}