/* Skrýváme header a sidebar pro registraci */
header.top-header,
.sidebar {
  display: none !important;
}
body {
  background: #000; /* černé pozadí pro registraci */
}
.content {
  margin-left: 0 !important;
}

/* Animace pro blikání VOP - červené ohraničení */
@keyframes redGlow {
    0% { box-shadow: 0 0 5px rgba(220, 53, 69, 0.8); border-color: #dc3545; }
    50% { box-shadow: 0 0 20px rgba(220, 53, 69, 1), 0 0 30px rgba(220, 53, 69, 0.8); border-color: #dc3545; }
    100% { box-shadow: 0 0 5px rgba(220, 53, 69, 0.8); border-color: #dc3545; }
}

/* Nové styly pro registrační formulář */
.register-logo {
  text-align: center;
  margin-top: 30px;
}
.register-logo img {
  max-width: 280px;
}
.register-container {
  width: 50%;
  max-width: 900px;
  min-width: 320px;
  margin: 20px auto 20px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  padding: 40px 30px;
  border-radius: 12px;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .register-container {
    width: 90%;
  }
}
.register-container h2 {
  text-align: center;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 25px;
}
.row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.col { flex: 1; min-width: 120px; }
.col.full { flex: 1 1 100%; }
.row label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}
.row input,
.row select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}
.row input:focus,
.row select:focus {
  outline: none;
  border-color: #007bff;
}
.register-button {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background 0.3s;
  margin-top: 10px;
}
.register-button:hover {
  background: #cc0000;
}