12345678910111213141516171819202122 |
- @charset "UTF-8";
- .register {
- .section__container {
- width: 100%;
- padding: 3.5em 2.2em 3em;
- background: linear-gradient(to bottom, #A8E2FF 0%, rgba(191, 230, 246, 0) 100%);
- &::before {
- content: "";
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: url(../images/register-bg.png) no-repeat center center/contain;
- opacity: 0.5;
- }
- }
- .form {
- position: relative;
- }
- }
|