25 lines
651 B
SCSS
25 lines
651 B
SCSS
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
width:100%;
|
|
// background-color: #f0f2f5; /* Легкий серый фон для контраста */
|
|
}
|
|
|
|
.form {
|
|
width: 400px; /* Ширина формы */
|
|
padding: 24px; /* Внутренние отступы */
|
|
background: white; /* Белый фон формы */
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Легкая тень */
|
|
border-radius: 8px; /* Скругленные углы */
|
|
margin-top:50px;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.vacansy_btn{
|
|
background-color: #372579;
|
|
&:hover{
|
|
background: #47309C !important;
|
|
}
|
|
} |