/**
 * frontend.css — panolive design
 * Plik dla modułu account LEPTON CMS
 * Umieść w: account/ (zastąp oryginalny plik)
 *
 * @author          FUH WebProjekt / PanoLive.pl
 * @copyright       2010-2025 LEPTON Project (base), panolive design override
 */

/* reset starych tabel i fieldsetów */
#frontend_login_template,
#frontend_signup_template {
  margin-top: 0;
}

#system_message {
  margin-top: 0;
}

table#forgot_form {
  display: none; /* zastąpione nowym layoutem w .lte */
}

/* stare fieldset — ukryte, zastąpione nowym layoutem */
fieldset.account_form {
  border: none;
  padding: 0;
  margin: 0;
  width: auto;
}

legend {
  font-size: .72rem;
  font-weight: 700;
  color: #7a90b5;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 0;
}

/* account_label / account_value — profil użytkownika */
div.account_label,
div.account_value {
  display: block;
  float: none;
  height: auto;
  line-height: 1.5;
  margin-bottom: 8px;
}
div.account_label {
  width: auto;
  font-size: .82rem;
  font-weight: 700;
  color: #4a5568;
  padding-left: 0;
}
div.account_value {
  width: 100%;
  overflow: visible;
}
div.account_value input,
div.account_value select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d4e0f5;
  border-radius: 8px;
  font-size: .93rem;
  color: #1a2a4a;
  outline: none;
  background: #f7f9fd;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
div.account_value input:focus,
div.account_value select:focus {
  border-color: #4466ae;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(68,102,174,.12);
}
div.account_value select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

/* komunikaty błędów */
div.result_message {
  background: #fce8e8;
  border: 1px solid #f5c6c6;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .88rem;
  color: #c0392b;
  font-weight: 600;
  margin-bottom: 14px;
}

/* success message */
div.success_message {
  background: #edf5f0;
  border: 1px solid #b8dfc8;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .88rem;
  color: #1a7a4a;
  font-weight: 600;
  margin-bottom: 14px;
}

/* submit buttons (fallback) */
input[type="submit"],
button[type="submit"] {
  background: linear-gradient(135deg, #3a5a9c, #4466ae);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 24px;
  font-size: .93rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(68,102,174,.28);
}
input[type="submit"]:hover,
button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(68,102,174,.38);
}
