47 lines
832 B
SCSS
47 lines
832 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%;
|
|
}
|
|
|
|
.button-telegram {
|
|
border: 0;
|
|
border-radius: 20px;
|
|
background-color: #54a9eb;
|
|
color: white;
|
|
font-size: 16px;
|
|
padding: 0.55rem 0.75rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button-telegram-icon {
|
|
filter: brightness(0) invert(1);
|
|
margin: 0 !important;
|
|
margin-right: 13px !important;
|
|
margin-left: none !important;
|
|
}
|