body {
      font-family: Arial, sans-serif;
      background: #c9c3c3;
      margin: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .container {
      position: relative;
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 0 12px rgba(0,0,0,0.1);
      width: 420px;
      text-align: center;
      overflow: hidden;
      margin-top: 100px;
    }

    .main-container {
      position: relative;
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 0 12px rgba(0,0,0,0.1);
      width: 90%;
      max-width: 1200px;
      overflow: hidden;
      margin-top: 100px;
    }

    .logoPB {
      top: 0px;
      width: 100%;
      text-align: center;
      align-items: center;
      z-index: 0;
    }

    h2 {
      margin: 12px 0;
      margin-bottom: 10px;
    }

    p {
      border-radius: 12px;
      margin: 20px 0;
    }

    input {
      display: block;
      text-align: center;
      width: 100%;
      padding: 10px;
      margin: 12px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-sizing: border-box;
    }

    button {
      width: 100%;
      padding: 10px;
      background: #4CAF50;
      color: white;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      box-sizing: border-box;
      transition: all 0.3s ease;
    }

    button:hover {
      background: #3a873e;
      transform: translateY(-1px);
      box-shadow: 0 2px 8px rgba(58, 135, 62, 0.2);
    }

    #message {
      margin-top: 12px;
      font-size: 14px;
      color: #333;
    }

    .password-tip {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border-left: 4px solid #3a873e;
      border-radius: 8px;
      padding: 12px 15px;
      margin: 20px 0;
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: Arial, sans-serif;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .password-tip:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

    .password-tip i {
      color: #3a873e;
      font-size: 18px;
      flex-shrink: 0;
    }

    .tip-content {
      flex: 1;
    }

    .tip-content p {
      margin: 0;
      font-size: 13px;
      color: #333;
      line-height: 1.4;
    }

    .tip-content strong {
      color: #2d5a32;
      font-family: 'Bank Gothic', Arial, sans-serif;
    }

    .info-box {
      background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
      border-left: 4px solid #1976d2;
      border-radius: 8px;
      padding: 12px 15px;
      margin: 20px 0;
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: Arial, sans-serif;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .info-box:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

    .info-box i {
      color: #1976d2;
      font-size: 18px;
      flex-shrink: 0;
    }

    .info-content {
      flex: 1;
    }

    .info-content p {
      margin: 0;
      font-size: 13px;
      color: #333;
      line-height: 1.4;
    }

    .info-content strong {
      color: #1565c0;
      font-family: 'Bank Gothic', Arial, sans-serif;
    }

    /* Media queries for responsive design */
    @media screen and (min-width: 768px) {
      .password-tip {
        padding: 10px 15px;
        margin: 15px 0;
      }
      
      .tip-content p {
        font-size: 12px;
      }
      
      .password-tip i {
        font-size: 16px;
      }
      
      .info-box {
        padding: 10px 15px;
        margin: 15px 0;
      }
      
      .info-content p {
        font-size: 12px;
      }
      
      .info-box i {
        font-size: 16px;
      }
    }

    .navbar-container {
      width: 100%;
      background-color: #3a873e;
      color: white;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      font-family: 'Bank Gothic', sans-serif;
      align-items: center;
      padding: 10px 20px;
      box-sizing: border-box;
    }

    .navbar-left {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .navbar-logo {
      display: flex;
      align-items: center;
    }

    .navbar-logo img {
      height: 40px;
    }

    .navbar-left span {
      font-size: 1.2em;
      font-weight: bold;
    }

    .navbar-right {
      display: flex;
    }

    .navbar-menu {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
      gap: 20px;
      align-items: center;
    }

    .navbar-menu li a {
      color: white;
      text-decoration: none;
      font-size: 1em;
      transition: color 0.3s;
    }

    .navbar-menu li a:hover {
      color: #ffcc00;
    }

    /* Mobile navigation with icons */
    .navbar-menu li a {
      padding: 8px 15px;
      font-size: 0;
      position: relative;
    }
    
    .navbar-menu li a:before {
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 18px;
      display: inline-block;
    }
    
    .navbar-menu li a[href="login.html"]:before {
      content: "\f007"; /* fa-user */
    }
    
    .navbar-menu li a[href="main.html"]:before {
      content: "\f084"; /* fa-key */
    }
    
    .navbar-menu li a:after {
      content: attr(data-tooltip);
      position: absolute;
      bottom: -25px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 10px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.3s;
      color: #666;
    }
    
    .navbar-menu li a:hover:after {
      opacity: 1;
    }

.contact-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border-left: 4px solid #3a873e;
  transition: all 0.3s ease;
}

.contact-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contact-header i {
  font-size: 3em;
  color: #3a873e;
  margin-bottom: 15px;
}

.contact-header h1 {
  color: #2c3e50;
  margin: 10px 0;
  font-size: 2.2em;
}

.subtitle {
  color: #6c757d;
  font-size: 1.1em;
  margin: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px 0;
}

.info-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  border-color: #3a873e;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: #3a873e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-wrapper i {
  color: white;
  font-size: 1.5em;
}

.info-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.info-card p {
  color: #495057;
  line-height: 1.6;
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: #e9f7ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.detail-icon i {
  color: #3a873e;
  font-size: 1.2em;
}

.detail-content {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 0.9em;
}

.detail-value {
  color: #495057;
  font-size: 1.1em;
}

.apology-note {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-radius: 12px;
  border: 1px solid #ffeaa7;
  margin-top: 30px;
}

.apology-note i {
  font-size: 2em;
  color: #f39c12;
  margin-bottom: 15px;
}

.apology-note p {
  font-size: 1.2em;
  color: #856404;
  margin: 0;
  font-weight: 500;
}

/* Responsywność */
@media (max-width: 768px) {
  .detail-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .detail-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .contact-header h1 {
    font-size: 1.8em;
  }
  
  /* Container adjustments for mobile */
  .container {
    width: 90%;
    max-width: 420px;
    padding: 20px;
    margin-top: 80px;
  }
  
  .container h2 {
    font-size: 20px;
  }
  
  .container p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .container input {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px;
  }
  
  .container button {
    font-size: 14px;
    padding: 12px 20px;
  }
  
  /* LogoPB adjustments */
  .logoPB {
    margin-bottom: 15px;
  }
  
  .logoPB img {
    width: 100%;
    max-width: 250px;
    height: auto;
  }
}

/* Extra small screens - container adjustments */
  .container {
    width: 95%;
    padding: 15px;
    margin-top: 70px;
  }
  
  .container h2 {
    font-size: 18px;
  }
  
  .container p {
    font-size: 13px;
  }
  
  .logoPB img {
    max-width: 200px;
  }

#login{
  text-align: left;
}

#password{
  text-align: left;
}

#message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    display: none; /* Hidden by default */
}

#message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block; /* Show when has success class */
}

#message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block; /* Show when has error class */
}

/* Style dla przycisku podczas ładowania */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.services-list li {
  display: flex;
  align-items: center;
  margin: 12px 0;
  line-height: 1.6;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.services-list li:hover {
  background: rgba(58, 135, 62, 0.05);
  transform: translateX(2px);
}

.services-list i {
  width: 28px; /* stała szerokość dla wszystkich ikon */
  font-size: 1.2em;
  color: #3a873e; /* zielony, żeby pasował do motywu */
  text-align: center;
  margin-right: 10px;
}

.services-list a {
  font-weight: bold;
  color: #0044cc;
  text-decoration: none;
}

.services-list a:hover {
  text-decoration: underline;
}

.services-list .service-description {
  margin-left: 2px;
  color: #000000;
}

.services-list .service-description:before {
  content: "–";
  margin: 0 2px;
  color: #000000;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  /* Navigation adjustments */
  .navbar-container {
    flex-direction: row;
    padding: 10px 15px;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar-left {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .navbar-left span {
    display: none; /* Hide text "Ldaptor" on mobile to save space */
  }
  
  .navbar-right {
    width: auto;
  }
  
  .navbar-menu {
    justify-content: flex-end;
    gap: 20px;
  }
  
  .navbar-menu li a {
    padding: 8px 15px;
    font-size: 0;
    position: relative;
  }
  
  .navbar-menu li a:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    display: inline-block;
  }
  
  .navbar-menu li a[href="login.html"]:before {
    content: "\f007"; /* fa-user */
  }
  
  .navbar-menu li a[href="main.html"]:before {
    content: "\f084"; /* fa-key */
  }
  
  .navbar-menu li a[href="index.html"]:before {
    content: "\f015"; /* fa-home */
  }
  
  .navbar-menu li a[href="index.html"]:before {
    content: "\f015"; /* fa-home */
  }
  
  .navbar-menu li a:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    color: #666;
  }
  
  .navbar-menu li a:hover:after {
    opacity: 1;
  }
  
  /* Main container adjustments */
  .main-container {
    padding: 15px;
    max-width: 100%;
  }
  
  /* Header adjustments */
  .contact-header h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .contact-header p.subtitle {
    font-size: 16px;
  }
  
  .contact-header i {
    font-size: 40px;
  }
  
  /* Info cards adjustments */
  .info-card {
    padding: 20px 15px;
    margin-bottom: 15px;
  }
  
  .info-card h2 {
    font-size: 20px;
  }
  
  .info-card p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .info-card ol {
    text-align: left;
    max-width: 100% !important;
    margin: 15px 0 !important;
    padding-left: 20px;
    line-height: 1.6 !important;
  }
  
  .info-card ol li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  /* Services list adjustments */
  .services-list {
    padding: 0;
  }
  
  .services-list li {
    padding: 8px 15px;
    margin-bottom: 4px;
    font-size: 14px;
  }
  
  .services-list li i {
    font-size: 16px;
    width: 20px;
  }
  
  /* Form elements (if any) */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Button adjustments */
  button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  /* Extra small screens */
  .main-container {
    padding: 10px;
  }
  
  .contact-header h1 {
    font-size: 20px;
  }
  
  .contact-header p.subtitle {
    font-size: 14px;
  }
  
  .info-card {
    padding: 15px 10px;
    margin-bottom: 12px;
  }
  
  .info-card h2 {
    font-size: 18px;
  }
  
  .navbar-left span {
    font-size: 14px;
    display: none; /* Hide "Ldaptor" text on mobile */
  }
  
  .services-list li {
    padding: 6px 12px;
    font-size: 13px;
    margin-bottom: 3px;
  }
}

/* Desktop navigation - show text and logo text */
@media screen and (min-width: 769px) {
  .navbar-menu li a {
    font-size: 14px !important;
  }
  
  .navbar-menu li a:before {
    display: none !important;
  }
  
  .navbar-menu li a:after {
    display: none !important;
  }
  
  .navbar-left span {
    display: inline !important;
    font-size: 1.2em !important;
  }
}

/* Desktop layout improvements */
@media screen and (min-width: 1024px) {
  .main-container {
    max-width: 1000px;
    padding: 40px;
  }
  
  .info-card {
    padding: 30px 40px;
    margin-bottom: 25px;
  }
  
  .contact-header {
    padding: 30px 40px;
    margin-bottom: 50px;
  }
  
  /* FAQ cards in a more compact layout */
  .info-card h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  
  /* Services list better spacing on desktop */
  .services-list {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .services-list li {
    margin: 15px 0;
    font-size: 1em;
  }
  
  /* Container (reset password form) desktop improvements */
  .container {
    max-width: 500px;
    padding: 40px;
    margin-top: 120px;
  }
  
  .container h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  
  .container p {
    font-size: 1em;
    line-height: 1.6;
  }
}