kgroad-frontend2/src/widgets/SignUpForm/SignUpForm.scss
Vladislav Khorev e0e2f5470d renamed folders
2024-02-14 08:04:02 +00:00

57 lines
987 B
SCSS

@import "@/shared/ui/variables.scss";
.sign-up-form {
margin-bottom: 8px;
width: 360px;
display: flex;
flex-direction: column;
&__error {
font-size: 14px;
font-weight: 400;
line-height: 20px;
color: $red-500;
}
&__forgot-password {
margin: 36px 0;
align-self: flex-end;
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: $blue;
}
&__inputs,
&__btns {
display: flex;
flex-direction: column;
gap: 20px;
}
&__btns {
margin-top: 36px;
gap: 16px;
&_first {
padding: 10px 18px;
height: 44px;
font-size: 16px;
font-weight: 700;
line-height: 24px;
color: #fff;
background-color: $light-blue;
border: 1px solid rgb(72, 159, 225);
border-radius: 8px;
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
background: rgb(72, 159, 225);
}
}
}
@media screen and (max-width: 550px) {
.sign-up-form {
width: 100%;
}
}