226 lines
4.2 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: 617px) {
top: 7%;
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;
align-items: center;
padding: 0 0 0 30px;
width: 65%;
@media (max-width: 740px) {
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;
justify-content: space-between;
margin: 0;
2023-03-28 20:42:18 +03:00
@media (max-width: 960px) {
font-size: 25px;
}
@media (max-width: 617px) {
flex-direction: column;
align-items: center;
font-size: 20px;
}
span {
color: #52b709;
margin: 0 0 0 10px;
}
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: 617px) {
margin: 10px 0 0 0;
}
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 {
margin: 44px 0 0 0;
2023-05-29 09:37:18 +03:00
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
@media (max-width: 617px) {
flex-direction: column;
align-items: center;
margin: 22px 0 0 0;
}
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: 617px) {
width: 75%;
}
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: 35px;
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
}
}
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;
margin: 0 55px 0 0;
@media (max-width: 740px) {
margin: 0;
}
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;
padding: 0 20px 0 10px;
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: 960px) {
padding: 0 0 0 10px;
}
@media (max-width: 740px) {
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
}