* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  background: url("../images/auth-bg1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 30px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.auth-card h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-control,
.form-select {
  background: rgba(255,255,255,0.25);
  border: none;
  color: #fff;
}

.form-control::placeholder {
  color: #eee;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255,255,255,0.35);
  box-shadow: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  border: none;
  font-weight: 600;
}

.auth-link {
  text-align: center;
  margin-top: 15px;
}

.auth-link a {
  color: #00f2fe;
  text-decoration: none;
}
