.info-box {
    background-color: #ffffff;
    padding: 32px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.info-box .box {
    color: #A6A6A6;
}

.info-box .box p {

}

/* Modal - tło */
.modal {
    display: none; 
    position: fixed; 
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5); /* półprzezroczyste tło */
  }
  
  /* Modal - zawartość */
  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
  }
  
  /* Nagłówek */
  .modal-content h3 {
    margin-top: 0;
    font-size: 22px;
    color: #333;
  }
  
  /* Pola formularza */
  .modal-content input[type="email"],
  .modal-content input[type="password"],
  .modal-content input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }
  
  /* Przycisk */
  .modal-content button {
    background-color: #1e90ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .modal-content button:hover {
    background-color: #006fd6;
  }
  
  /* Przycisk zamknięcia (X) */
  .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .close-modal:hover {
    color: #333;
  }
  