95 lines
1.8 KiB
CSS
95 lines
1.8 KiB
CSS
/* === ESTILOS GENERALES === */
|
|
.pregunta-page {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: linear-gradient(to bottom, #ebf4ff, #ffffff);
|
|
font-family: "Inter", sans-serif;
|
|
}
|
|
|
|
/* === CONTENEDOR === */
|
|
.pregunta-container {
|
|
background: white;
|
|
border: 1px solid #e5e7eb;
|
|
border-radius: 20px;
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
|
|
width: 90%;
|
|
max-width: 900px;
|
|
padding: 3rem;
|
|
}
|
|
|
|
/* === TÍTULO === */
|
|
.pregunta-titulo {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
color: #1e40af;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
/* === TEXTO === */
|
|
.pregunta-texto {
|
|
font-weight: 600;
|
|
color: #374151;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
/* === GRID DE INPUTS === */
|
|
.pregunta-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.pregunta-grid label {
|
|
display: block;
|
|
font-size: 0.9rem;
|
|
color: #4b5563;
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
|
|
.pregunta-grid input {
|
|
width: 100%;
|
|
padding: 0.6rem 0.8rem;
|
|
border: 1px solid #d1d5db;
|
|
border-radius: 8px;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
|
background-color: #f9fafb;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.pregunta-grid input:focus {
|
|
border-color: #2563eb;
|
|
outline: none;
|
|
background-color: #ffffff;
|
|
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
|
|
}
|
|
|
|
/* === BOTONES === */
|
|
.boton-contenedor {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 2.5rem;
|
|
}
|
|
|
|
.boton {
|
|
display: inline-block;
|
|
padding: 0.8rem 1.6rem;
|
|
border-radius: 10px;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
transition: all 0.2s ease;
|
|
box-shadow: 0 3px 8px rgba(37, 99, 235, 0.25);
|
|
}
|
|
|
|
.boton.siguiente {
|
|
background-color: #2563eb;
|
|
color: white;
|
|
}
|
|
|
|
.boton.siguiente:hover {
|
|
background-color: #1e3a8a;
|
|
transform: scale(1.05);
|
|
}
|