/* Container pro centrování obsahu */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

/* Logo */
.logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Nadpis */
h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

/* Formulář */
.payment-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.payment-form label {
  font-weight: bold;
  margin-bottom: 8px;
  align-self: flex-start;
}

.payment-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 14px;
}

.payment-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

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

/* Status messages */
.status {
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}

.status.success {
  background-color: #e6ffed;
  color: #1a7f37;
  border: 1px solid #a4e0b3;
}

.status.error {
  background-color: #ffe6e6;
  color: #c62828;
  border: 1px solid #f5b7b1;
}

/* Responzivní úpravy pro mobilní zařízení */
@media (max-width: 640px) {
  h1 {
    font-size: 20px;
  }

  .payment-form {
    padding: 15px;
  }

  .payment-form input, .payment-form button {
    font-size: 14px;
    padding: 8px;
  }

  .logo {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
  }
}
