.container {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background: var(--bg);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--fg);
  font-family: var(--serif);
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--fg);
}

input[type="url"],
input[type="text"] {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--hover);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
  background: var(--bg);
  color: var(--fg);
}

input[type="url"]:focus,
input[type="text"]:focus {
  border-color: var(--accent);
  outline: none;
}

input[type="url"]::placeholder,
input[type="text"]::placeholder {
  color: var(--dim);
  opacity: 0.7;
}

button {
  background-color: #7b64c0;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
  width: 100%;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

button:hover {
  background-color: #6a52ad;
}

.help-text {
  font-size: 14px;
  color: var(--dim);
  margin-top: 5px;
}

p {
  color: var(--fg);
  text-align: center;
}
