123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- .registration {
- background-color: $ashen;
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- grid-gap: 25px;
- height: 100vh;
- padding: 40px 80px;
- }
- .registration__column {
- border-radius: 40px;
- overflow: hidden;
- max-height: inherit;
- box-shadow: 2px 2px 20px rgba($color: $black, $alpha: 0.4);
- }
- .registration__img {
- img {
- height: 100%;
- width: 100%;
- object-fit: cover;
- }
- }
- .registration__body {
- background-color: $white;
- display: flex;
- align-items: center;
- justify-content:center;
- }
- .form-registration {
- min-width: 300px;
- }
- .form-registration__title {
- font-family: 'Oswald';
- font-weight: bold;
- font-size: 36px;
- margin-bottom: 25px;
- }
- .form-registration__field {
- &:not(:last-child) {
- margin-bottom: 20px;
- }
- }
- .form-registration__field_input {
- width: 100%;
- font-family: 'Noto Sans';
- font-size: 15px;
- border: 1px solid $black;
- padding: 7px 15px;
- color: $black;
- border-radius: 7px;
- &::placeholder {
- color: $grey;
- }
- }
- .form-registration__send {
- text-align: center;
- }
- .form-registration__send_btn {}
- .button-green {}
- .form-registration__line {
- display: flex;
- align-items: center;
- }
- .form-registration__line_text {
- font-family: 'Noto Sans';
- font-size: 15px;
- color: $ashen;
- padding: 0 25px;
- margin: 10px 0;
- }
- .form-registration__line_span {
- flex: 1 1 auto;
- display: block;
- height: 1px;
- border-radius: 5px;
- background-color: $ashen;
- }
- .form-registration__link {}
- .form-registration__link_login {
- display: block;
- text-align: center;
- font-family: 'Noto Sans';
- font-size: 15px;
- color: $black;
- span {
- color: $blue;
- }
- }
|