@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
html,body {
    height: 100vh;
	width: 100vw;
    margin: 0;
    padding: 0;
    border: 0
}
html {
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale
}
body {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    text-transform: initial;
    letter-spacing: initial;
    font-family: -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
    color:#212b36;
	background: linear-gradient(-45deg, #36a4c8, #a0d6f2, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 20s ease infinite;
}
@media screen and (min-width: 640px) {
    body {
        font-size:1.4rem
    }
}
strong {
    font-weight: 600
}
a {
    color: #3CA6C7;
    text-decoration: none;
    cursor: pointer
}
a:hover {
    color: #3CA6C7;
    text-decoration: underline
}
a:active {
    color: #3CA6C7
}
a.is-disabled {
    color: #95a7b7);
    pointer-events: none
}
button::-moz-focus-inner {
    border: 0
}
a,button,[role='button'],input,label,select,summary,textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation
}
img {
    display: block;
    max-width: 100%
}
form,input {
    margin: 0
}
h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
    margin: 0
}
h1 {
    font-size: 26px;
    line-height: 1
}
h2 {
    font-size: 18px
}
h3 {
    font-size: 14px
}
h4 {
    font-size: 14px
}
h5 {
    font-size: 14px
}
h6 {
    font-size: 14px
}
p {
    margin: 0
}
input {
    font-size: 14px;
    line-height: 24px;
    font-family: -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif
}
.ui-button {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    height: auto;
	min-height: 3.6rem;
    margin: 0;
    font-family: inherit;
    cursor: pointer;
    text-transform: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0.9rem 1.5rem;
    border-radius: 0.4rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6rem;
    color: #fff;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background: #3CA6C7;
    border: none;
    position: relative;
	-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.05),inset 0 -1px 0 rgba(0,0,0,0.2);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05),inset 0 -1px 0 rgba(0,0,0,0.2)
}
.ui-button::-moz-focus-inner {
    padding: 0;
    border: 0
}
.ui-button:hover,.ui-button:focus,.ui-button:active {
    text-decoration: none
}
.ui-button.btn-disabled,.ui-button.disabled,.ui-button:disabled,.ui-button[disabled]{
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: default;
    pointer-events: none
}
.ui-button:focus {
    outline: none
}
@media screen and (max-width: 1024px) {
	.ui-button {
		width: 100%;
		font-size: 1.6rem;
	}
}
@media (-ms-high-contrast: active) {
    .ui-button {
        outline: 1px solid windowText
    }
}
.ui-button:focus:not(:active)::after {
    -webkit-box-shadow: 0 0 0 0.2rem #458fff;
    box-shadow: 0 0 0 0.2rem #458fff
}
.ui-button::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: calc(-1 * calc(0px + 0.1rem));
    right: calc(-1 * calc(0px + 0.1rem));
    bottom: calc(-1 * calc(0px + 0.1rem));
    left: calc(-1 * calc(0px + 0.1rem));
    display: block;
    pointer-events: none;
    -webkit-box-shadow: 0 0 0 calc(-1 * calc(0px + 0.1rem)) #458fff;
    box-shadow: 0 0 0 calc(-1 * calc(0px + 0.1rem)) #458fff;
    -webkit-transition: -webkit-box-shadow 100ms cubic-bezier(0.4, 0.22, 0.28, 1);
    transition: -webkit-box-shadow 100ms cubic-bezier(0.4, 0.22, 0.28, 1);
    transition: box-shadow 100ms cubic-bezier(0.4, 0.22, 0.28, 1);
    transition: box-shadow 100ms cubic-bezier(0.4, 0.22, 0.28, 1),-webkit-box-shadow 100ms cubic-bezier(0.4, 0.22, 0.28, 1);
    border-radius: calc(0.4rem + 0.1rem)
}
.ui-button:hover {
    border-width: 0;
	background: #2F99BA;
    -webkit-box-shadow: 0 1px 0 rgb(0 0 0 / 5%), inset 0 -1px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 1px 0 rgb(0 0 0 / 5%), inset 0 -1px 0 rgb(0 0 0 / 20%);
}
.ui-button:focus:not(:active) {
    border-width: 0;
    -webkit-box-shadow: 0 1px 0 rgb(0 0 0 / 5%), inset 0 -1px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 1px 0 rgb(0 0 0 / 5%), inset 0 -1px 0 rgb(0 0 0 / 20%);
}
.ui-button:active {
    border-width: 0;
	background: #238DAE;
    -webkit-box-shadow: 0 1px 0 rgb(0 0 0 / 5%), inset 0 -1px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 1px 0 rgb(0 0 0 / 5%), inset 0 -1px 0 rgb(0 0 0 / 20%);
}
.ui-button.btn-disabled, .ui-button.disabled, .ui-button:disabled, .ui-button[disabled] {
    color: #8c9196;
    background: #f1f1f1;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.ui-button--size-large {
    margin: 1.5rem 0;
	padding: 1.7rem 2.8rem;
    font-size: 1.7rem;
    line-height: 2rem;
    min-height: 4.4rem
}
@media screen and (min-width: 640px) {
    .ui-button--size-large {
        font-size:1.6rem
    }
}
.ui-heading {
    font-size: 2.4rem;
    font-weight: 600;
	line-height: 1.2em;
	margin-bottom: 0.4rem
}
@media (max-width: 500px) and (max-height: 1024px) {
    .ui-heading {
        font-size:1.8rem
    }
}
.ui-subheading {
	font-size: 1.6rem;
    font-weight: 400;
	margin: 0 0 2rem;
    line-height: 2.4rem;   
}
@media (max-width: 500px) and (max-height: 1024px) {
    .ui-subheading {
        margin-bottom:2.4rem;
        font-size: 1.4rem
    }
}
.ui-subheading--subdued {
    color: #6d7175;
}
.validation-error {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0.8rem
}
.validation-error__icon {
    top: 0;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 20px;
    width: 20px;
    margin-right: 4px;
    fill: #de3618
}
.validation-error__message {
    color: #bf0711
}
.fresh-ui .validation-error {
    margin-top: 0.8rem
}
.next-icon, .next-icon__text {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
	background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    top: -0.15em;
}
.next-icon--size-20 {
    width: 20px;
    height: 20px;
}
.next-icon--color-red {
    color: transparent;
    fill: #de3618;
}
.next-label {
    position: absolute;
    top: 0;
    left: 0;
	display: block;
    margin: 0;
	padding: inherit;
    -webkit-transform: translateX(1.3rem) translateY(0.4rem);
    transform: translateX(1.3rem) translateY(0.4rem);
    z-index: 50;
    color: #637381;
	line-height: 2.4rem;
    font-size: 1.2rem;
	font-weight: 400;
	text-transform: initial;
    letter-spacing: initial;
    cursor: pointer
}
.next-input {
    display: inline-block;
    min-width: 75px;
    vertical-align: baseline;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
	padding: 2.4rem 1.6rem 0.6rem 1.2rem;
    border-radius: 0.4rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.4rem;
    text-transform: initial;
    letter-spacing: initial;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
	max-height: 5.6rem;
    color: #454F5B;
    border: 0.1rem solid #8C9196;
    background-color: #fff
}
.next-input::-webkit-input-placeholder {
    color: #8c9196
}
.next-input::-moz-placeholder {
    color: #8c9196
}
.next-input:-ms-input-placeholder {
    color: #8c9196
}
.next-input::-ms-input-placeholder {
    color:  #8c9196
}
.next-input::placeholder {
    color:  #8c9196
}
.next-input:focus {
    -webkit-box-shadow: 0 0 0 0.1rem #3CA6C7;
    box-shadow: 0 0 0 0.1rem #3CA6C7;
    border-color: #3CA6C7
}
.next-input-wrapper--is-error .next-input {
    background-color: #FFF4F4;
	border-color: #D82C0D;
	-webkit-box-shadow: 0 0 0 0.1rem #de3618;
    box-shadow: 0 0 0 0.1rem #de3618;
}
.page-container {
    position: relative
}
.page-main {
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 0;
}
.page-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
    max-width: 46.8rem;
    width: 95%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: white;
    border-radius: 8px;
    margin-top: 2vw;
    margin-bottom: 2vw
}
@media (max-width: 500px) and (max-height: 1024px) {
    .page-content {
        margin:1.5vw 3vw;
        margin-top: 17.5vw;
        margin-bottom: 2vw
    }
}
.ui-form__section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -8px
}
.ui-form__section .next-input-wrapper {
	position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 8px;
    max-width: 100%
}
.login-footer.mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1
}
@media all and (min-width: 500px) {
    .page-main {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .page-main .page-content {
        width: 100%
    }
    .login-footer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }
    .login-footer.mobile {
        display: none
    }
}
@media all and (min-width: 1025px) {
    .page-main {
        -webkit-box-pack:center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }
    .page-main .page-content {
        margin-left: 10vw;
        margin-right: 10vw
    }
}
.login-card__content .help-link {
    margin-top: 0.8rem;
    display: block
}
@media (max-width: 500px) and (max-height: 1024px) {
    .login-card__content .help-link {
        font-size:1.4rem
    }
}
.login-card__content .validation-error {
    font-size: 1.5rem
}
@media screen and (min-width: 640px) {
    .login-card__content .validation-error {
        font-size:1.4rem
    }
}
.login-card__content .validation-error a {
    color: #de3618;
    text-decoration: underline
}
.login-card__content .validation-error a:hover,.login-card__content .validation-error a:focus {
    color: #bf0711
}
.login-card__content .validation-error a:active {
    color: #330101
}
.login-card {
    padding-top: 8rem;
    padding-right: 4rem;
    padding-bottom: 4rem;
    padding-left: 4rem
}
@media (max-width: 500px) and (max-height: 1024px) {
    .login-card {
        padding-top:3.2rem;
        padding-right: 2.4rem;
        padding-bottom: 2.4rem;
        padding-left: 2.4rem
    }
}
@media (max-width: 500px) and (max-height: 1024px) {
    .login-card {
        padding-top:2rem
    }
}
@media (max-width: 500px) {
    .login-card {
        padding-left:2.3rem;
        padding-right: 2.3rem
    }
}
@media (max-height: 600px) {
    .login-card {
        padding-top:4.8rem;
        padding-bottom: 1.5rem
    }
}
.login-card__header {
    margin-bottom: 6rem
}
@media (max-width: 500px) and (max-height: 1024px) {
    .login-card__header {
        margin-bottom:2.2rem
    }
}
@media (max-height: 600px) {
    .login-card__header {
        margin-bottom:2.5rem
    }
}
.login-card__logo {
    width: 17rem
}
@media (max-width: 500px) and (max-height: 1024px) {
    .login-card__logo {
        width:10rem
    }
}
.login-card__app_logo {
    width: 8rem;
}
@media screen and (max-width: 1024px) {
	.login-card__app_logo {
		width: 6rem;
	}
}
.login-card__app_logo img {
  border-radius: 6px;
}
.login-footer {
    width: 100%;
    font-size: 1.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 6rem 3.2rem 4rem 3.2rem;
    border-bottom-left-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem
}
@media (max-width: 500px) and (max-height: 1024px) {
    .login-footer {
        display:none
    }
}
.login-footer img {
	width: 15rem;
	text-align: right;
}
.icon-symbols {
    display: none;
}


body {
	background: linear-gradient(-45deg, #36a4c8, #a0d6f2;
	background-size: 400% 400%;
	animation: gradient 30s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}