File size: 1,077 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
/* ############### OptForm Section ############### */
.optform-wrapper {
display: flex;
justify-content: center;
margin-top: 20px;
margin-bottom: 70px;
padding: 0 20px;
}
@media (max-width: 950px) {
.optform-wrapper {
flex-direction: column;
align-items: center;
}
}
.optform-email {
max-width: 450px;
width: 100%;
border: 0;
padding: 10px;
height: 60px;
font-size: 20px;
}
.optform-button {
width: fit-content;
height: 60px;
background: #e50914;
color: #fff;
text-transform: uppercase;
padding: 0 32px;
font-size: 26px;
border: 0;
cursor: pointer;
display: flex;
align-items: center;
}
.optform-button a {
color: white;
}
@media (max-width: 950px) {
.optform-button {
height: 50px;
font-size: 16px;
margin-top: 20px;
font-weight: bold;
}
}
.optform-button-image {
margin-left: 10px;
filter: brightness(0) invert(1);
width: 24px;
}
.optform-button-image img:hover {
background: #f40612;
}
.optform-text {
font-size: 19px;
color: #fff;
text-align: center;
padding: 0 20px;
}
|