/* Reset podstawowy */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f0f0f0;
  height: 100%; /* Dodane, aby ustawić pełną wysokość */
}

/* Styl nawigacji */
nav { 
  background-color: #1e90ff;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}

#rejestracja_przycisk, #przypomnij_haslo_przycisk {
  color: rgb(0, 102, 255);
  text-decoration: none;
}

#rejestracja_przycisk:hover, #przypomnij_haslo_przycisk:hover {
  color: rgb(255, 0, 0);
  text-decoration: none;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  color: rgb(0, 2, 129);
}

/* Flexbox - Wyśrodkowanie */
.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Ustawia pełną wysokość widoku */
}

/* Kontener główny na środku */
.content {
  max-width: 400px;
  width: 100%; /* Ustawia szerokość na 100% do max-width */
  padding: 20px;
}

/* Kontener logowania */
.login-container {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: 100%; /* Ustawia szerokość na 100% */
  max-width: 400px; /* Ogranicza maksymalną szerokość do 400px */
  color: #333;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  color: #666;
}

.form-group input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-button {
  background-color: #007BFF;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 20px;
}

.login-button:hover {
  background-color: #0056b3;
}

p {
  padding-bottom: 5px;
  font-size: 13px;
}

/* Styl dla przycisków */
.przycisk_zaloguj, .przycisk_biznes {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background-color: #007BFF;
  border-radius: 5px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.przycisk_zaloguj:hover, .przycisk_biznes:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.przycisk_biznes {
  margin-left: 20px;
  margin-right: 30px;
}

h2 {
  font-size: 1.2rem;
  color: #007BFF;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* Skalowanie reCAPTCHA */
.g-recaptcha {
  transform: scale(0.85);
  transform-origin: 0 0; 
}