* {
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: #fafafa;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 450px;
  padding: 20px;
  margin-top: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

label {
  font-size: 0.95rem;
  margin-top: 15px;
  display: block;
}

input {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

button {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: #e2b626;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
}

button:hover {
  background: #e2b626c7
}

.title-wrap {
  display: flex;
  align-items: center;   /* vertically centers the image with the text */
  gap: 10px;             /* space between title and image */
}

.title-wrap img {
  height: 150px;          /* adjust size */
  width: auto;           /* keeps proportions */
}

.right-img {
  float: right;
  margin-left: 10px; /* optional spacing */
}

.spinner {
  border: 4px solid #eee;
  border-top: 4px solid #4a90e2;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 0.8s linear infinite;
  margin: 20px auto;
}

.hidden {
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

pre {
  white-space: pre-wrap;
  background: #f4f4f4;
  padding: 12px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 0.9rem;
}