252 lines
4.6 KiB
SCSS
Raw Normal View History

2023-05-29 09:37:18 +03:00
.registration {
background: white;
2023-03-28 20:42:18 +03:00
display: flex;
2023-05-29 09:37:18 +03:00
flex-direction: row;
padding: 40px 20px 40px 20px;
2023-05-29 09:37:18 +03:00
justify-content: space-between;
border: 1px solid #dde2e4;
border-radius: 8px;
width: 60%;
@media (max-width: 1375px) {
width: 80%;
}
@media (max-width: 703px) {
2024-01-10 18:40:14 +03:00
top: 0;
z-index: 1;
padding: 20px 10px 20px 10px;
}
2023-05-29 09:37:18 +03:00
&-body {
2023-12-05 14:22:45 +03:00
&__main {
display: flex;
flex-direction: column;
width: 65%;
@media (max-width: 1106px) {
width: 100%;
padding: 0;
}
2023-05-29 09:37:18 +03:00
&-title {
2023-05-29 09:37:18 +03:00
font-weight: 500;
font-size: 35px;
line-height: 32px;
display: flex;
2024-01-12 19:11:36 +03:00
justify-content: center;
margin: 0;
2023-03-28 20:42:18 +03:00
@media (max-width: 960px) {
font-size: 25px;
}
@media (max-width: 703px) {
align-items: center;
font-size: 20px;
}
span {
color: #52b709;
2024-01-10 18:40:14 +03:00
margin-left: 10px;
@media (max-width: 703px) {
margin-left: 5px;
}
}
2023-05-29 09:37:18 +03:00
}
2023-03-28 20:42:18 +03:00
2023-05-29 09:37:18 +03:00
&-desc {
text-align: center;
width: 100%;
2023-05-29 09:37:18 +03:00
font-weight: 500;
font-size: 16px;
line-height: 28px;
margin: 20px 0 0 0;
@media (max-width: 960px) {
font-size: 15px;
}
@media (max-width: 703px) {
margin: 10px 0 0 0;
2024-01-10 18:40:14 +03:00
line-height: 20px;
}
2023-05-29 09:37:18 +03:00
}
2023-03-28 20:42:18 +03:00
2023-05-29 09:37:18 +03:00
.input-body {
2024-01-10 18:40:14 +03:00
margin-top: 44px;
2023-05-29 09:37:18 +03:00
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
@media (max-width: 703px) {
flex-direction: column;
align-items: center;
2024-01-10 18:40:14 +03:00
margin-top: 10px;
}
2023-03-28 20:42:18 +03:00
2023-05-29 09:37:18 +03:00
&__box {
2023-03-28 20:42:18 +03:00
display: flex;
2023-05-29 09:37:18 +03:00
flex-direction: column;
width: 47%;
@media (max-width: 703px) {
width: 85%;
}
2023-03-28 20:42:18 +03:00
h5 {
2023-05-29 09:37:18 +03:00
font-weight: 400;
font-size: 15px;
line-height: 18px;
margin: 0 0 0 10px;
2023-05-29 09:37:18 +03:00
}
input {
height: 43px;
2023-05-29 09:37:18 +03:00
background: #eff2f7;
border-radius: 8px;
border: none;
2023-11-19 18:49:52 +03:00
margin-bottom: 5px;
2023-05-29 09:37:18 +03:00
padding-left: 20px;
2023-03-28 20:42:18 +03:00
}
2023-11-19 18:49:52 +03:00
.inputContainer {
margin: 0 0 20px 0;
width: 100%;
2023-11-19 18:49:52 +03:00
}
span {
color: red;
font-size: 12px;
}
.error {
border: 1px solid red;
}
2023-03-28 20:42:18 +03:00
}
}
.input_checkbox {
display: flex;
width: 100%;
align-items: center;
cursor: pointer;
p {
font-size: 16px;
font-weight: 500;
}
span {
border: 1px solid gray;
border-radius: 4px;
width: 20px;
height: 20px;
margin-left: 10px;
display: flex;
align-items: center;
justify-content: center;
img {
width: 15px;
height: 15px;
}
}
.checkbox--active {
background: #f2f2f2;
}
}
2023-05-29 09:37:18 +03:00
.button-box {
2023-03-28 20:42:18 +03:00
display: flex;
2023-05-29 09:37:18 +03:00
flex-direction: row;
margin-top: 10px;
&__submit {
width: 174px;
2023-11-23 16:48:45 +03:00
height: 50px;
2023-05-29 09:37:18 +03:00
font-size: 18px;
2023-03-28 20:42:18 +03:00
}
2023-11-03 16:23:21 +03:00
.disable {
opacity: 0.5;
pointer-events: none;
}
2023-05-29 09:37:18 +03:00
h5 {
2023-03-28 20:42:18 +03:00
display: flex;
2023-05-29 09:37:18 +03:00
align-items: flex-end;
font-size: 16px;
line-height: 28px;
2023-03-28 20:42:18 +03:00
p {
2023-05-29 09:37:18 +03:00
color: #406128;
text-decoration: underline;
margin: 0 0 0 5px;
2023-03-28 20:42:18 +03:00
}
}
}
}
2023-12-05 14:22:45 +03:00
&__about {
border-left: 1px solid #cdcdcd;
2024-01-12 19:11:36 +03:00
padding: 0 20px 0 25px;
margin: 0 0 0 10px;
2023-05-29 09:37:18 +03:00
display: flex;
flex-direction: column;
justify-content: space-between;
width: 35%;
@media (max-width: 1106px) {
display: none;
}
2023-05-29 09:37:18 +03:00
h4 {
margin: 30px 0 5px 0;
2023-05-29 09:37:18 +03:00
font-weight: 900;
font-size: 14px;
line-height: 24px;
color: #52b709;
width: 100%;
@media (max-width: 960px) {
margin: 15px 0 5px 0;
font-size: 12px;
}
2023-03-28 20:42:18 +03:00
}
2023-05-29 09:37:18 +03:00
&-text {
display: flex;
flex-direction: row;
p {
font-weight: 400;
font-size: 12px;
line-height: 22px;
width: 230px;
@media (max-width: 1643px) {
width: 100%;
}
@media (max-width: 960px) {
font-size: 10px;
}
2023-05-29 09:37:18 +03:00
}
img {
2023-11-27 17:32:38 +03:00
margin: 0 18px 0 0;
2023-05-29 09:37:18 +03:00
}
2023-03-28 20:42:18 +03:00
}
}
}
2023-11-23 16:48:45 +03:00
.loader {
justify-content: start;
left: 80px;
}
2023-03-28 20:42:18 +03:00
}