48 lines
677 B
CSS
48 lines
677 B
CSS
.pregunta-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background: #f7f8f9;
|
|
width: 100%;
|
|
}
|
|
|
|
.brand img {
|
|
width: 320px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.card {
|
|
width: 100%;
|
|
background: white;
|
|
border-radius: 12px;
|
|
padding: 2rem;
|
|
box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
|
|
text-align: left;
|
|
}
|
|
|
|
.card h2 {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.question-label {
|
|
margin-bottom: 8px;
|
|
display: block;
|
|
color: #333;
|
|
}
|
|
|
|
.single-input {
|
|
width: 110px;
|
|
padding: 10px 12px;
|
|
font-size: 18px;
|
|
border-radius: 6px;
|
|
border: 1px solid #ccc;
|
|
text-align: center;
|
|
}
|
|
|
|
.hint {
|
|
font-size: 13px;
|
|
color: #777;
|
|
}
|