       
  form {
    max-width: 800px;
    margin: auto;
    padding: 40px 30px;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  .form-group {
    margin-bottom: 25px;
    text-align: center;
  }

  .form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
  }

  .input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fdfdfd;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 12px;
  }

  .input-icon i {
    margin-right: 10px;
    font-size: 18px;
    color: #888;
    width: 24px;
    text-align: center;
  }

  .input-icon input,
  .input-icon textarea {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    background-color: transparent;
    width: 100%;
  }

  textarea {
    resize: vertical;
    min-height: 100px;
  }

.formularz-button {
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #4285f4, #357ae8);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
}

.formularz-button:hover {
  background: linear-gradient(to right, #357ae8, #2a65d1);
}


  #result {
    margin-top: 20px;
    font-weight: bold;
    color: green;
  }

  .rodo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .rodo-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .rodo-label input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    accent-color: #4285f4;
  }

  .rodo-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    background-color: #f9f9f9;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: left;
    max-width: 500px;
  }