@import url('./menu.css');
|
|
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
.formulario-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
width: 100vw;
|
|
}
|
|
|
|
.form-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 560px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
fieldset {
|
|
border-radius: 7px;
|
|
width: 550px;
|
|
margin-inline: 10px;
|
|
border-color: #996dff;
|
|
}
|
|
|
|
legend {
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
}
|
|
|
|
input[type='text'] {
|
|
border: none;
|
|
border-bottom: 1px solid black;
|
|
outline: none;
|
|
width: 320px;
|
|
border-color: #996dff;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
td {
|
|
height: 40px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
button {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
width: 120px;
|
|
height: 40px;
|
|
margin-block: 5px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
background-color: #734bd1;
|
|
color: #fff;
|
|
border: none;
|
|
transition-duration: 0.4s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #9466ff;
|
|
}
|
|
|
|
footer {
|
|
padding-bottom: 50px;
|
|
text-align: center;
|
|
margin-inline: 20px;
|
|
}
|
|
|
|
iframe {
|
|
width: 300px;
|
|
height: 100px;
|
|
border: 2px solid #734bd1;
|
|
border-radius: 5px;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.msg-sucesso {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
font-weight: bold;
|
|
font-size: 10vw;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
fieldset, input[type='text'] {
|
|
width: 60vw;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 450px) {
|
|
fieldset, input[type='text'] {
|
|
width: 40vw;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 350px) {
|
|
iframe {
|
|
width: 85vw;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 280px) {
|
|
fieldset, input[type='text'] {
|
|
width: 35vw;
|
|
}
|
|
legend {
|
|
font-size: 7vw;
|
|
}
|
|
td {
|
|
font-size: 6.5vw;
|
|
}
|
|
}
|
|
|
|
|