27 lines
445 B
SCSS
27 lines
445 B
SCSS
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
|
|
* {
|
|
margin: 7px 0;
|
|
}
|
|
}
|
|
|
|
.button-submit {
|
|
background-color: var(--color-primary);
|
|
font-family: Montserrat;
|
|
border: 0;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
line-height: 2;
|
|
outline: 0;
|
|
padding: 0.55rem 0.75rem;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
vertical-align: middle;
|
|
width: 100%;
|
|
}
|