

/* Body */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url('oktagon.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

/* Container */
.container {
  max-width: 800px;
  width: 100%;
  padding: 15px;
  background-color: white;
  box-shadow: 0 0 10px rgb(201, 199, 199, 0.856);
  border-radius: 8px;
  margin-top: 15px;
  color: rgb(3, 3, 95);
}

/* Oktagon */
.oktagon {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* Label */
label {
  display: block;
  margin-bottom: 5px;
  line-height: 0.5; /* Přidáno: Snížení výšky řádku pro labely */
}

/* Input */
input {
  width: 100%;
  padding: 8px;
  margin-bottom: 16px;
  box-sizing: border-box;
  line-height: 0.5; /* Přidáno: Snížení výšky řádku pro inputy */
}

/* Button */
button {
  background-color: rgb(3, 3, 95);
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

/* Logo */
.logo {
  max-width: 200px;
  height: auto;
  margin-right: 600px;
}

/* Consent Box */
.consent-box {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}

/* Consent Checkbox */
#consent {
  margin-right: 5px; /* Přidáno: Pro oddělení checkboxu od textu */
}

/* Consent Label */
label[for="consent"] {
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 5px;
}

/* Media Query  */
@media (max-width: 600px) {
  .container {
    padding: 10px;
  }

  .logo {
    max-width: 150px;
    margin-right: 0;
  }

  .consent-box {
    flex-direction: row;
    align-items: flex-start;
  }

  label[for="consent"] {
    margin-right: 5px;
  }
}