/* Tipografía base */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

:root {
  --font-main: 'Inter', sans-serif;
  --color-bg: #f9f9f9;
  --color-text: #222;
  --color-accent: #111;
  --color-muted: #ccc;
  --color-button: #222;
  --color-button-hover: #444;
  --radius: 8px;
  --shadow: 0 0 10px rgba(0,0,0,0.05);
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  margin: 0;
  padding: 2rem;
}

main {
  max-width: 700px;
  margin: auto;
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

input,
textarea,
select,
button {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--color-muted);
  border-radius: var(--radius);
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

button {
  background-color: var(--color-button);
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: var(--color-button-hover);
}

@media (max-width: 600px) {
  body {
    padding: 1rem;
  }

  main {
    padding: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }
}
