200 lines
3.3 KiB
SCSS
200 lines
3.3 KiB
SCSS
.registration-candidate {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
background: #f1f1f1;
|
|
|
|
.container {
|
|
max-width: 1160px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
}
|
|
|
|
&__start {
|
|
display: flex;
|
|
position: relative;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: 55px;
|
|
|
|
@media (max-width: 1375px) {
|
|
padding-top: 75px;
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
padding-top: 70px;
|
|
}
|
|
|
|
.step {
|
|
top: 36.5%;
|
|
|
|
@media (max-width: 1375px) {
|
|
top: 42%;
|
|
}
|
|
|
|
@media (max-width: 1072px) {
|
|
top: 31.5%;
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
top: 28%;
|
|
}
|
|
|
|
@media (max-width: 660px) {
|
|
top: 23%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__form-wrapper {
|
|
position: relative;
|
|
margin-top: 200px;
|
|
display: flex;
|
|
padding: 33px 69px 32px 30px;
|
|
background: #ffffff;
|
|
max-height: 438px;
|
|
border-radius: 12px;
|
|
width: 100%;
|
|
|
|
@media (max-width: 660px) {
|
|
flex-direction: column;
|
|
}
|
|
|
|
@media (max-width: 402px) {
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
&__info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 30px;
|
|
|
|
&__category {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
img {
|
|
width: 48px;
|
|
}
|
|
|
|
p {
|
|
margin-left: 18px;
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
line-height: 22px;
|
|
max-width: 120px;
|
|
}
|
|
}
|
|
|
|
&__skills {
|
|
max-width: 180px;
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
color: #6f6f6f;
|
|
}
|
|
|
|
&__arrow {
|
|
width: 48px;
|
|
height: 48px;
|
|
background: #ddeec6;
|
|
border-radius: 50px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
img {
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
}
|
|
|
|
&__form {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-left: 70px;
|
|
margin-top: 20px;
|
|
row-gap: 28px;
|
|
column-gap: 55px;
|
|
|
|
@media (max-width: 1072px) {
|
|
flex-wrap: nowrap;
|
|
flex-direction: column;
|
|
width: 50%;
|
|
}
|
|
|
|
@media (max-width: 660px) {
|
|
width: 100%;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
&__input {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 46%;
|
|
position: relative;
|
|
|
|
@media (max-width: 1072px) {
|
|
width: 100%;
|
|
}
|
|
|
|
@media (max-width: 478px) {
|
|
// width: 100%;
|
|
}
|
|
|
|
label {
|
|
font-weight: 400;
|
|
font-size: 15px;
|
|
line-height: 18px;
|
|
color: #000000;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
input {
|
|
background: #eff2f7;
|
|
border-radius: 8px;
|
|
width: 100%;
|
|
padding: 10px 12px;
|
|
border: none;
|
|
outline: none;
|
|
font-weight: 400;
|
|
font-size: 15px;
|
|
line-height: 18px;
|
|
}
|
|
|
|
.error {
|
|
border: 1px solid red;
|
|
}
|
|
|
|
span {
|
|
position: absolute;
|
|
bottom: -22px;
|
|
color: red;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
&__submit {
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
button {
|
|
border: none;
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
line-height: 32px;
|
|
color: #ffffff;
|
|
background: #52b709;
|
|
border-radius: 44px;
|
|
width: 180px;
|
|
height: 46px;
|
|
}
|
|
}
|
|
}
|
|
}
|