/* login.css – új verzió minimal header + 400px hero */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #003b5c;
}

/* Minimal fejlec */
.login-header {
  width: 100%;
  height: 70px;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding-left: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  position: relative;
  z-index: 10;
}

.login-logo {
  font-size: 24px;
  font-weight: bold;
  color: #009fe3;
}

/* 400px magas HERO */
.login-hero-wrapper {
  width: 100%;
  height: 400px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Kék HERO blokk buborékokkal */
.hero-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #009fe3, #00c6ff);
  z-index: 1;
}

.bubble {
  position: absolute;
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  animation: float 12s infinite ease-in-out;
  filter: blur(2px);
}

.bubble:nth-child(1) { left: 15%; animation-duration: 10s; }
.bubble:nth-child(2) { left: 50%; animation-duration: 14s; width: 120px; height: 120px; }
.bubble:nth-child(3) { left: 80%; animation-duration: 16s; width: 70px; height: 70px; }

@keyframes float {
  0% { transform: translateY(0); opacity: 0.4; }
  50% { opacity: 0.9; }
  100% { transform: translateY(-180px); opacity: 0.4; }
}

/* LOGIN BOX */
.login-box {
  width: 380px;
  padding: 30px;
  background: rgba(255,255,255,0.92);
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
  z-index: 2;
  position: relative;
}

.login-box h2 {
  margin-top: 0;
  font-size: 26px;
  text-align: center;
  margin-bottom: 18px;
}

label {
  font-weight: bold;
  margin-bottom: 6px;
  display: block;
}

input {
  width: 94%;
  padding: 12px;
  border: none;
  margin-bottom: 12px;
  border-radius: 6px;
  background: #fff;
  font-size: 15px;
  border: 1px solid #bcedff;
}

button {
  width: 100%;
  padding: 12px;
  background: #fa6d16;
  border: none;
  font-size: 16px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 8px;
}

button:hover {
  opacity: 0.92;
}

.error {
  color: red;
  font-size: 14px;
  min-height: 20px;
}

.legal {
  margin-top: 25px;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0.8;
}

/* Üres terület a HERO alatt */
.login-empty-space {
  width: 100%;
  height: calc(100vh - 400px - 70px);
  background: #ffffff;
}
