guild_front/src/pages/AuthForCandidate/authForCandidate.scss

159 lines
2.9 KiB
SCSS
Raw Normal View History

2023-04-04 19:07:19 +03:00
.auth-candidate {
font-family: "LabGrotesque", sans-serif;
overflow: hidden;
position: relative;
background-color: #f1f1f1;
.auth {
&__wrapper {
2023-04-19 20:22:06 +03:00
background: #ffffff;
2023-04-04 19:07:19 +03:00
border-radius: 12px;
padding: 50px 0 35px 56px;
margin-top: 40px;
display: flex;
2023-04-10 18:12:36 +03:00
@media (max-width: 1024px) {
margin-top: 100px;
}
@media (max-width: 870px) {
flex-direction: column;
padding: 25px;
}
2023-04-04 19:07:19 +03:00
}
&__info {
margin-right: 115px;
h3 {
font-weight: 500;
font-size: 30px;
line-height: 32px;
margin-bottom: 20px;
}
p {
max-width: 310px;
margin-top: 17px;
font-weight: 400;
font-size: 16px;
line-height: 30px;
2023-04-10 18:12:36 +03:00
@media (max-width: 870px) {
max-width: none;
margin-bottom: 15px;
}
}
@media (max-width: 870px) {
margin-right: 0;
2023-04-04 19:07:19 +03:00
}
}
&__form {
display: flex;
flex-direction: column;
input {
margin-bottom: 30px;
2023-04-19 20:22:06 +03:00
background: #eff2f7;
2023-04-04 19:07:19 +03:00
border-radius: 8px;
min-width: 300px;
width: 100%;
padding: 8px 12px;
border: none;
outline: none;
font-weight: 400;
font-size: 15px;
line-height: 18px;
2023-04-10 18:12:36 +03:00
@media (max-width: 870px) {
max-width: 350px;
}
2023-04-04 19:07:19 +03:00
}
label {
margin-bottom: 15px;
font-weight: 400;
font-size: 15px;
line-height: 18px;
color: #000000;
}
button {
2023-04-19 20:22:06 +03:00
background: #52b709;
2023-04-04 19:07:19 +03:00
border-radius: 44px;
max-width: 130px;
border: none;
font-weight: 500;
font-size: 18px;
line-height: 32px;
color: white;
height: 45px;
}
}
}
&__start {
margin-top: 60px;
display: flex;
flex-direction: column;
align-items: center;
&__title {
font-weight: 500;
font-size: 44px;
line-height: 32px;
color: #000000;
text-align: center;
span {
2023-04-19 20:22:06 +03:00
color: #52b709;
2023-04-04 19:07:19 +03:00
}
2023-04-10 18:12:36 +03:00
@media (max-width: 660px) {
font-size: 25px;
}
2023-04-04 19:07:19 +03:00
}
&__description {
font-weight: 400;
font-size: 22px;
line-height: 32px;
}
&__categoriesWrapper {
position: relative;
margin-top: 200px;
width: 100%;
2023-04-19 20:22:06 +03:00
display: grid;
grid-gap: 24px;
grid-template-columns: 1fr 1fr 1fr;
margin-bottom: 24px;
@media (max-width: 955px) {
grid-template-columns: 1fr 1fr;
}
@media (max-width: 668px) {
grid-template-columns: 1fr;
}
2023-04-10 18:12:36 +03:00
.categoriesItem {
@media (max-width: 1094px) {
flex: 0 0 48.6%;
}
@media (max-width: 795px) {
flex: 0 0 100%;
}
}
@media (max-width: 660px) {
margin-top: 130px;
}
2023-04-04 19:07:19 +03:00
}
}
footer {
margin-top: 70px;
}
}