_register.scss 574B

12345678910111213141516171819202122
  1. @charset "UTF-8";
  2. .register {
  3. .section__container {
  4. width: 100%;
  5. padding: 3.5em 2.2em 3em;
  6. background: linear-gradient(to bottom, #A8E2FF 0%, rgba(191, 230, 246, 0) 100%);
  7. &::before {
  8. content: "";
  9. display: block;
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. width: 100%;
  14. height: 100%;
  15. background: url(../images/register-bg.png) no-repeat center center/contain;
  16. opacity: 0.5;
  17. }
  18. }
  19. .form {
  20. position: relative;
  21. }
  22. }