@charset "UTF-8";
.login_panel {
  position: fixed;
  top: 50px;
  right: 0;
  left: auto;
  width: 260px;
  background: #dddddd;
  border: 1px solid #aaa;
  padding: 32px 12px 12px 12px;
  display: none;
  z-index: 3000;
  /* INPUT */
  /* LABEL – početna pozicija (u inputu) */
  /* KAD JE FOCUS ILI IMA VALUE */
}
.login_panel .login_close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #555;
}
.login_panel .login_close:hover {
  color: #8a0808;
}
.login_panel .form_group {
  position: relative;
  margin-bottom: 16px;
}
.login_panel .form_group input {
  width: 100%;
  height: 40px;
  padding: 10px 8px;
  font-size: 0.95rem;
  border: 1px solid #aaa;
  border-radius: 4px;
  background-color: #fff;
  outline: none;
}
.login_panel .form_group label {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: #666;
  pointer-events: none;
  background-color: #fff;
  padding: 0 4px;
  transition: all 0.15s ease;
}
.login_panel .form_group input:not(:-moz-placeholder) + label {
  top: -6px;
  font-size: 0.7rem;
  color: #8a0808;
}
.login_panel .form_group input:focus + label,
.login_panel .form_group input:not(:placeholder-shown) + label {
  top: -6px;
  font-size: 0.7rem;
  color: #8a0808;
}

@media (min-width: 1520px) {
  .login_panel {
    right: calc((100vw - 1510px) / 2);
  }
}
.login_panel button[type=submit] {
  width: 100%;
  height: 36px;
  margin-top: 8px;
  background-color: #8a0808;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.login_panel button[type=submit]:hover {
  background-color: #5f0505;
}

.form_group_cookies {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 5px;
  font-size: 0.85rem;
  color: #333;
}
.form_group_cookies .loginCookie_chkbox {
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.form_group_cookies .loginCookie_chkboxspan {
  cursor: pointer;
}

.login_forgot {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  text-align: center;
  color: #555;
  text-decoration: none;
}

.login_forgot:hover {
  text-decoration: underline;
  color: #8a0808;
}

.login_panel.open {
  display: block;
}

.login_close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.login_error_box {
  background: #fdecea;
  border: 1px solid #f5c6cb;
  color: #a94442;
  padding: 10px 12px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  text-align: center;
}

.site_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  transform: translateY(0);
  transition: transform 0.25s ease;
}

.site_header.hidden {
  transform: translateY(-100%);
}/*# sourceMappingURL=login.css.map */