/* Body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('pozadie.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);
  text-align: center;
}

/* Form Container */
.form-container {
  width: 60%; /* Šířka pro nový kontejner formuláře na 60% */
  margin: auto; /* Zarovnání na střed */
}

/* Oktagon */
.oktagon {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}


/* Label */
label {
  display: block;
  margin-bottom: 5px;
  line-height: 1; /* Výška řádku pro labely */
}

/* Input */
input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  line-height: 1; /* Výška řá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: 0;
}

/* Consent Box */
.consent-box {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
  max-width: 100%;
}

.consent-box input {
    width: auto !important;
}

/* Consent Checkbox */
#consent {
  margin-right: 5px;
}

/* Consent Label */
label[for="consent"] {
  display: flex;
  align-items: center;
  /*white-space: nowrap;*/
  margin-bottom: 5px;
    word-wrap: break-word;
    text-align: left;
}

/* Media Query */
@media (max-width: 600px) {
  .container {
    padding: 10px;
  }
}

.hidden {
    display: none
}

.form-group {
    margin-bottom: 16px;
}

.danger {
    color: #b32e2e;
}