2016-12-01 18:57:19 +00:00
|
|
|
.user-registration {
|
2019-01-03 20:46:55 +00:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2020-12-02 14:59:44 +00:00
|
|
|
align-items: stretch;
|
2019-01-03 20:46:55 +00:00
|
|
|
flex-grow: 1;
|
2021-04-30 21:32:50 +00:00
|
|
|
margin-top: $pad-large;
|
2016-12-01 18:57:19 +00:00
|
|
|
|
|
|
|
|
&__container {
|
2020-12-02 14:59:44 +00:00
|
|
|
@include size(500px auto);
|
|
|
|
|
@include position(absolute, 49% 0 null null);
|
|
|
|
|
transition: left 300ms ease, opacity 300ms ease;
|
|
|
|
|
border-radius: 10px;
|
2021-04-30 21:32:50 +00:00
|
|
|
background-color: $ui-off-white;
|
2016-12-01 18:57:19 +00:00
|
|
|
box-sizing: border-box;
|
2021-04-30 21:32:50 +00:00
|
|
|
padding: $pad-xxlarge;
|
2020-12-02 14:59:44 +00:00
|
|
|
z-index: 1;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
font-size: $large;
|
|
|
|
|
font-weight: $regular;
|
|
|
|
|
text-align: center;
|
2021-04-30 21:32:50 +00:00
|
|
|
padding: 0 0 $pad-medium;
|
2020-12-02 14:59:44 +00:00
|
|
|
margin: 0;
|
2021-04-30 21:32:50 +00:00
|
|
|
margin-bottom: $pad-xxlarge;
|
2023-01-05 15:23:27 +00:00
|
|
|
border-bottom: 1px solid $ui-fleet-black-10;
|
2020-12-02 14:59:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
font-size: $small;
|
|
|
|
|
margin: 0 0 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--admin {
|
|
|
|
|
left: 0;
|
2022-12-16 18:32:10 +00:00
|
|
|
top: unquote("max(56%, 560px)");
|
2020-12-02 14:59:44 +00:00
|
|
|
margin: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--org {
|
|
|
|
|
left: calc(100% + 220px);
|
2021-04-12 13:32:25 +00:00
|
|
|
top: unquote("max(56%, 480px)");
|
2023-04-18 17:34:21 +00:00
|
|
|
display: none;
|
2020-12-02 14:59:44 +00:00
|
|
|
}
|
|
|
|
|
|
2021-06-14 19:45:43 +00:00
|
|
|
&--fleet {
|
2020-12-02 14:59:44 +00:00
|
|
|
left: calc(150% + 220px);
|
2021-04-12 13:32:25 +00:00
|
|
|
top: unquote("max(56%, 480px)");
|
2023-04-18 17:34:21 +00:00
|
|
|
display: none;
|
2020-12-02 14:59:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--confirmation {
|
|
|
|
|
left: calc(200% + 220px);
|
2021-04-12 13:32:25 +00:00
|
|
|
top: unquote("max(56%, 480px)");
|
2023-04-18 17:34:21 +00:00
|
|
|
display: none;
|
2020-12-02 14:59:44 +00:00
|
|
|
}
|
2016-12-01 18:57:19 +00:00
|
|
|
|
|
|
|
|
&--complete {
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
.user-registration__title {
|
2021-04-30 21:32:50 +00:00
|
|
|
font-size: $large;
|
2016-12-01 18:57:19 +00:00
|
|
|
font-weight: $bold;
|
2021-04-30 21:32:50 +00:00
|
|
|
color: $core-fleet-black;
|
2016-12-01 18:57:19 +00:00
|
|
|
padding: 25px 35px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__form {
|
2020-12-02 14:59:44 +00:00
|
|
|
display: flex;
|
2016-12-01 18:57:19 +00:00
|
|
|
width: 100%;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
|
|
@include breakpoint(tablet) {
|
2019-01-03 20:46:55 +00:00
|
|
|
transform: translateY(-100px);
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--step1-complete {
|
2020-12-02 14:59:44 +00:00
|
|
|
.user-registration__container--admin {
|
|
|
|
|
left: -600px;
|
2023-04-18 17:34:21 +00:00
|
|
|
display: none;
|
2020-12-02 14:59:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-registration__container--org {
|
|
|
|
|
left: 0;
|
|
|
|
|
margin: auto;
|
2023-04-18 17:34:21 +00:00
|
|
|
display: block;
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
2021-06-14 19:45:43 +00:00
|
|
|
.user-registration__container--fleet {
|
2020-12-02 14:59:44 +00:00
|
|
|
left: calc(100% + 220px);
|
2023-04-18 17:34:21 +00:00
|
|
|
display: none;
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
2020-12-02 14:59:44 +00:00
|
|
|
.user-registration__container--confirmation {
|
|
|
|
|
left: calc(150% + 220px);
|
2023-04-18 17:34:21 +00:00
|
|
|
display: none;
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--step2-complete {
|
2020-12-02 14:59:44 +00:00
|
|
|
.user-registration__container--admin {
|
|
|
|
|
left: calc(-50% - 600px);
|
2023-04-18 17:34:21 +00:00
|
|
|
display: none;
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
2020-12-02 14:59:44 +00:00
|
|
|
.user-registration__container--org {
|
|
|
|
|
left: -600px;
|
2023-04-18 17:34:21 +00:00
|
|
|
display: none;
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
2021-06-14 19:45:43 +00:00
|
|
|
.user-registration__container--fleet {
|
2020-12-02 14:59:44 +00:00
|
|
|
left: 0;
|
|
|
|
|
margin: auto;
|
2023-04-18 17:34:21 +00:00
|
|
|
display: block;
|
2020-12-02 14:59:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-registration__container--confirmation {
|
|
|
|
|
left: calc(100% + 220px);
|
2023-04-18 17:34:21 +00:00
|
|
|
display: none;
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--step3-complete {
|
2020-12-02 14:59:44 +00:00
|
|
|
.user-registration__container--admin {
|
|
|
|
|
left: calc(-100% - 600px);
|
2023-04-18 17:34:21 +00:00
|
|
|
display: none;
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
2020-12-02 14:59:44 +00:00
|
|
|
.user-registration__container--org {
|
|
|
|
|
left: calc(-50% - 600px);
|
2023-04-18 17:34:21 +00:00
|
|
|
display: none;
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
2021-06-14 19:45:43 +00:00
|
|
|
.user-registration__container--fleet {
|
2020-12-02 14:59:44 +00:00
|
|
|
left: -600px;
|
2023-04-18 17:34:21 +00:00
|
|
|
display: none;
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
2020-12-02 14:59:44 +00:00
|
|
|
.user-registration__container--confirmation {
|
|
|
|
|
left: 0;
|
|
|
|
|
margin: auto;
|
2023-04-18 17:34:21 +00:00
|
|
|
display: block;
|
2020-12-02 14:59:44 +00:00
|
|
|
}
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
left: auto;
|
|
|
|
|
right: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--step1-active {
|
|
|
|
|
&::before {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__description {
|
2021-04-30 21:32:50 +00:00
|
|
|
font-size: $x-small;
|
2020-11-20 00:51:22 +00:00
|
|
|
font-weight: $regular;
|
2021-04-30 21:32:50 +00:00
|
|
|
color: $core-fleet-black;
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
font-weight: $bold;
|
2021-04-30 21:32:50 +00:00
|
|
|
color: $core-fleet-black;
|
2016-12-01 18:57:19 +00:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__field-wrapper {
|
2021-04-30 21:32:50 +00:00
|
|
|
background-color: $ui-off-white;
|
2016-12-01 18:57:19 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
z-index: 2;
|
2020-12-02 14:59:44 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2016-12-01 18:57:19 +00:00
|
|
|
|
|
|
|
|
.button {
|
2020-12-02 14:59:44 +00:00
|
|
|
width: 160px;
|
2021-04-30 21:32:50 +00:00
|
|
|
margin-top: $pad-xxlarge;
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.registration-fields {
|
|
|
|
|
box-sizing: border-box;
|
2020-12-02 14:59:44 +00:00
|
|
|
width: 100%;
|
2016-12-01 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|