body {
    font-family: "Quicksand", Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;

}

section.formulario {
    max-width: 25rem;
    margin: 5rem auto;
    margin-top: 20rem;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

section.formulario h2 {
    text-align: center;
    margin-bottom: 1.25;
    color: #333;
}

section.formulario label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

section.formulario input[type="text"],
section.formulario input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "Quicksand", Arial, sans-serif;
}

/* Botón CTA */
.cta-button {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  color: var(--color-amarillo);
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 2rem;
  border: 1px solid var(--color-amarillo);
  border-radius: 25px;
  background-color: #000000;
}

.cta-button:hover{
  background-color: var(--color-amarillo);
  color: var(--color--blanco);
  transition: ease-in 0.1s;
}


section.formulario p {
    text-align: center;
    margin-top: 16px;
    font-size: 1rem;

}

section.formulario a {
    color: #0078D7;
    text-decoration: none;
}

section.formulario a:hover {
    text-decoration: underline;
}

.error {
    color: #d8000c;
    background-color: #ffbaba;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-align: center;
}
