body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

.logo {
    max-width: 960px;
    margin: 10px auto;
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
  }
  .logowanie {
    max-width: 960px;
    margin: 10px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .contact-info {
    max-width: 960px;
    margin: 10px auto;
    text-align: right;
    margin-top: 20px;
  }

  .button-login {
    width: calc(25% - 10px);
    color: black;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 0;
    margin-bottom: 20px;
    margin-right: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition-duration: 0.4s;
    height: 114px; /* Stała wysokość */
}

.button-login span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Ustalenie wysokości kontenera */
}

/*
  .form-group-login {
    margin-bottom: 20px;
  }
  .form-group-login label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .form-group-login input {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .btn-login {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
  }
  .btn-login:hover {
    background-color: #0056b3;
  } */


/* Style for the modal background */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 300px;
  position: relative;
  top: 5%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  /* background-color: #5cb85c; */
  color: black;
}

.modal-footer {
  padding: 10px 16px;
  /* background-color: #5cb85c; */
  color: black;
  text-align: center;
}

.number-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-content: center;
  margin: 10px 0;
}

.number-buttons .num-btn, .number-buttons .inactive-btn {
  width: 100px;
  height: 50px;
  font-size: 20px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
}

.inactive-btn {
  background-color: transparent;
  border: none;
}

.modal-footer button {
  width: 100px;
  height: 50px;
  font-size: 20px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px 20px;
  margin-left: 10px;
}

#okBtn {
background: blue;
color: white;
}

#cancelBtn {
background: grey;
color: white;
}
