56 lines
1.0 KiB
SCSS
56 lines
1.0 KiB
SCSS
.newsletterForm {
|
|
display: flex;
|
|
width: 53.75%;
|
|
margin: 0 auto;
|
|
|
|
.emailInputContainer {
|
|
height: fit-content;
|
|
width: 690px;
|
|
border-bottom: 1px solid #929292;
|
|
|
|
:global(.vtex-input-prefix__group) {
|
|
height: fit-content;
|
|
border: 0;
|
|
}
|
|
|
|
:global(.vtex-styleguide-9-x-input) {
|
|
padding: 0 0 7px;
|
|
font-size: 18px;
|
|
line-height: 25px;
|
|
color: #929292;
|
|
background: transparent !important;
|
|
|
|
@include mq(lg, max) {
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.formSubmitContainer {
|
|
border-bottom: 1px solid #929292;
|
|
|
|
:global(.vtex-button) {
|
|
min-height: fit-content;
|
|
background: transparent;
|
|
border: 0;
|
|
border-bottom: 3px solid #bfbfbf;
|
|
border-radius: 0;
|
|
}
|
|
|
|
:global(.vtex-button__label) {
|
|
padding: 0 16px 10px !important;
|
|
border: 0;
|
|
font-size: 0;
|
|
color: #ffffff;
|
|
|
|
&::after {
|
|
content: "ENVIAR";
|
|
font-weight: 700;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
}
|
|
}
|
|
}
|
|
}
|