* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
}

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('menu.jpeg') center/cover;
  position: relative;
  padding: 20px;
}

.login-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}


.login-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}


.login-header {
  text-align: center;
  margin-bottom: 24px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.logo-icon {
  background: linear-gradient(45deg, orange, red);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.logo-text {
  font-size: 26px;
  font-weight: 700;
  color: white;
}

.login-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}

.login-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* INPUT FIELDS */
.input-group {
  margin-bottom: 16px;
}

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: white;
  margin-bottom: 6px;
  text-align: left;
}

.input-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.input-group input:focus {
  outline: none;
  border-color: #FF6B35;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* REMEMBER & FORGOT */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
}

.remember {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.remember input {
  accent-color: red; 
}

.forgot {
  color: #FFD166; 
  text-decoration: none;
  font-weight: 500;
}

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

/* LOGIN BUTTON */
.login-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, orange, red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.login-btn:hover {
  transform: translateY(-2px);
  background: red;
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.5);
}

/* REGISTER LINK */
.register-text {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.register-text a {
  color: #FFD166;
  text-decoration: none;
  font-weight: 600;
}

.register-text a:hover {
  text-decoration: underline;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 480px) {
  .login-wrapper {
    padding: 15px;
  }
  
  .login-card {
    padding: 24px 20px;
    border-radius: 12px;
  }
  
  .logo-text {
    font-size: 22px;
  }
  
  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
  
  .login-header h2 {
    font-size: 20px;
  }
  
  .login-header p {
    font-size: 12px;
  }
  
  .input-group input {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .login-btn {
    padding: 11px;
    font-size: 14px;
  }
}