body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background: url('../assets/img/formularios_01.jpg') no-repeat center center fixed;
  background-size: cover;
}


/*.form-container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}*/

input, textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
}

button {
  background-color: #0066cc;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
 }

button:hover {
  background-color: #004999;
}

.aviso {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 10px;
}



/*----------------------para formularios-------*/

.form-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    font-family: 'Raleway', sans-serif;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #246BB2;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="password"],
.form-container textarea {
    width: 100%;
    padding: 10px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.form-container textarea {
    min-height: 120px;
    resize: vertical;
}

.form-container button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #154a85;
}

.form-container .aviso {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}


/*para respuestas de preguntas*/
.respuesta-container {
    max-width: 800px;
    margin: 100px auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    font-family: 'Raleway', sans-serif;
}

.respuesta-container h2,
.respuesta-container h3 {
    color: #246BB2;
    margin-top: 0;
}

.respuesta-container p {
    font-size: 16px;
    line-height: 1.6em;
    color: #333;
    margin-bottom: 20px;
}

.respuesta-container .sin-respuesta {
    color: #999;
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
}


.respuesta-container .link-volver {
    display: inline-block;
    margin-top: 20px;
    color: #246BB2;
    text-decoration: none;
    font-weight: bold;
}

.respuesta-container .link-volver:hover {
    text-decoration: underline;
}


.boton-volver {
  position: fixed;
  top: 220px;
  right: 20px;
  font-size: 18px;
  padding: 12px 20px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 999;
  transition: background-color 0.3s;
}

.boton-volver_2 {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 18px;
  padding: 12px 20px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 999;
  transition: background-color 0.3s;
}



.boton-volver:hover {
  background-color: #174A8A;
}


.boton-volver {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.boton-volver:hover {
  background-color: #444;
}

