/* Wrapper */
.wdb-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  font-family: Arial, sans-serif;
}

/* Title */
.wdb-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.wdb-title .brand {
  color: #0073aa;
  font-weight: bold;
}

/* Rows */
.wdb-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.wdb-row .wdb-field {
  flex: 1;
}

/* Inputs */
.wdb-field input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.wdb-field input:focus {
  border-color: #0073aa;
  outline: none;
}

/* Terms */
.wdb-terms {
  font-size: 0.9rem;
  margin: 1rem 0;
}
.wdb-terms label {
  margin-left: 0.5rem;
}

/* Buttons */
.wdb-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.wdb-actions .btn-primary {
  background: #0073aa;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}
.wdb-actions .btn-primary:hover {
  background: #005f8d;
}

/* Footer */
.wdb-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
.wdb-footer a {
  color: #0073aa;
  text-decoration: none;
}
.wdb-footer a:hover {
  text-decoration: underline;
}

