html, body {
	min-height: 100vh
  }

body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font: 16px/1.6 'Raleway', Arial, Helvetica, sans-serif;
  color: #fff;
  text-align: center;
  opacity: 0.75;
  background: linear-gradient(to bottom, #080485 0%, #39ced6 100%) !important;
  background-attachment: fixed;
  min-height: 100vh; /* Nowa właściwość */
  width: 100%; /* Nowa właściwość */
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-container {
  flex: 1; /* Ustawiamy flex na 1, aby element rozciągał się w miarę potrzeb */
  background: linear-gradient(to bottom, #080485 0%, #39ced6 100%) !important;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  color: #fff;

  /* Dodajemy styl, aby kontener rozciągał się na całą dostępną wysokość */
  min-height: 100vh;
}

/* Stylizacja okna modalnego */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  max-width: 400px;
  color: #000; /* zmiana koloru tekstu na czarny */
}

.modal input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.modal button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

.modal button:hover {
  background-color: #0056b3;
}

.alltrans,
.social-icons li a,
.owl-nav > button,
.owl-nav > button:after,
.counter-box,
.about-img:after,
.gallery-img img,
.owl-dot,
.subscribe-row,
.close-btn,
.close-btn:before,
.close-btn:after,
.tag-btn,
.btn {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #fff;
  outline: none;
  text-decoration: underline;
}
.input-field {
  width: 100%;
  margin-bottom: 20px; /* Dodatkowy margines na odstęp między polami */
}

