:root {
    --color-primary: rgb(142,36,170);
}

.auth-view {
    font-size: 16px;
}

.auth-view,
.auth-view-design-container,
.auth-view-form-container,
.auth-view-design-container::before,
.auth-view-design-container::after {
    width: 100%;
    height: 100%;
}


.auth-view-design-container {
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}


.auth-view-design-container::before {
    content: ' ';
    position: absolute;
    top: 0;
    left:0;
    background: url("/static/assets/car-fob-bg.jpeg") center center/cover no-repeat;
    z-index: 1;
    /* filter: hue-rotate(11deg) saturate(3) blur(1px); */
    opacity: 0.25;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 400'%3E%3Cdefs%3E%3CradialGradient id='a' cx='396' cy='281' r='514' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23D18'/%3E%3Cstop offset='1' stop-color='%23330000'/%3E%3C/radialGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='400' y1='148' x2='400' y2='333'%3E%3Cstop offset='0' stop-color='%23FA3' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23FA3' stop-opacity='0.5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='800' height='400'/%3E%3Cg fill-opacity='0.45'%3E%3Ccircle fill='url(%23b)' cx='267.5' cy='61' r='300'/%3E%3Ccircle fill='url(%23b)' cx='532.5' cy='61' r='300'/%3E%3Ccircle fill='url(%23b)' cx='400' cy='30' r='300'/%3E%3C/g%3E%3C/svg%3E"); */
    /* background-attachment: fixed; */
    /* background-size: cover; */
    /* background-position: center center; */
}
.auth-view-design-container::after {
    content: ' ';
    position: absolute;
    top: 0;
    left:0;
    z-index: 2;
    opacity: 0.8;
    /*background: linear-gradient(135deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);*/
    background: linear-gradient(45deg, #6d1a5f, #904e95, #6497f9);
    /* background: linear-gradient(-45deg, #e96443, #904e95); */
    background-size: 300% 300%;
    -webkit-animation: auth-view-gradient 13s ease infinite;
    -moz-animation: auth-view-gradient 13s ease infinite;
    -o-animation: auth-view-gradient 13s ease infinite;
    animation: auth-view-gradient 13s ease infinite;
}

@keyframes auth-view-gradient {
	0% {background-position: 0 50%}
	50% {background-position: 100% 50%}
	100% {background-position: 0 50%}
}
@-webkit-keyframes auth-view-gradient {
	0% {background-position: 0 50%}
	50% {background-position: 100% 50%}
	100% {background-position: 0 50%}
}
@-moz-keyframes auth-view-gradient {
	0% {background-position: 0 50%}
	50% {background-position: 100% 50%}
	100% {background-position: 0 50%}
}
@-o-keyframes auth-view-gradient {
	0% {background-position: 0 50%}
	50% {background-position: 100% 50%;}
	100% {background-position: 0% 50%}
}



.auth-view-form-container {
    overflow-y: auto;
}

.auth-view-form__submit-btn {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.auth-view-form__submit-btn.md-primary:not([disabled]) {
    box-shadow: 0 6px 6px -3px rgba(142,36,170,.2),
        0 10px 14px 1px rgba(142,36,170,.14),
        0 4px 18px 3px rgba(142,36,170,.12)!important;
}
.auth-view-form__submit-btn.md-primary:hover:not([disabled]) {
    /*box-shadow: 0 7px 8px -4px rgba(142,36,170,.2),*/
    /*    0 13px 19px 2px rgba(142,36,170,.14),*/
    /*    0 5px 24px 4px rgba(142,36,170,.12)!important;*/
}

svg.auth-view-form__app-logo {
    width: 124px;
    height: auto;
    background: var(--color-login-purple);
    background: linear-gradient(45deg, #6d1a5f, #904e95, #6497f9);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
img.auth-view-form__app-logo {
    height: 4.9375rem;
    width: auto;
    filter: drop-shadow(2px 8px 6px rgba(0,0,0,0.13));
}

.auth-view-form__app-name-text {
    margin-top: 36px;
    font-size: 24px;
    color: var(--color-login-grey);
    background: linear-gradient(45deg, #6d1a5f, #904e95, #6497f9);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.auth-view-form-container form {
    width: 325px;
    max-width: 100%;
    margin-top: 36px;
    padding: 16px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 2px 1px -1px rgba(0,0,0,.12);
}
.auth-view-form-container form[name='registerForm'] {
    width: 415px;
}

.auth-view-form-container md-input-container {
    width: 100%;
    position: relative;
}

.auth-view-form-container md-input-container .absolute-icon--right{
    position: absolute;
    right: 8px!important;
    top: 5px;
}

.auth-view-form__secondary-text {
    color: #585858;
    font-size: 12px;
    text-align: center;
}

.auth-view-form__text-link {
    color: var(--color-primary);
    cursor: pointer;
    outline: none;
}

.auth-view-button-container {
    position: absolute;
    right: -3px;
    top: 40%;
    z-index: 5;
}

.auth-view-button__button {
    padding: 24px;
    text-align: center;
    position: relative;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    cursor: pointer;
    outline: none;
}
.auth-view-button__button--active,
.auth-view-button__button--active::before,
.auth-view-button__button--active::after {
    /*transition: all .1s linear;*/
}

.auth-view-button__button--active::before,
.auth-view-button__button--active::after {
    border: 10px solid #fafafa;
    border-radius: 19px;
    content: ' ';
    position: absolute;
    right: -5px;
    border-left: transparent;
}
.auth-view-button__button--active::before {
    top: -9px;
    transform: rotate(45deg);
}
.auth-view-button__button--active::after {
    bottom: -9px;
    transform: rotate(-45deg);
}

.auth-view-button__button-text {
    color: #fff;
    text-align: center;
    font-weight: 700;
}
.auth-view-button__button--active {
    background: #fafafa;
    box-shadow: inset 0 1px 3px 0 rgba(0,0,0,.2), inset 0 1px 1px 0 rgba(0,0,0,.14), inset 0 2px 1px -1px rgba(0,0,0,.12);
}
.auth-view-button__button--active .auth-view-button__button-text{
    color: var(--color-primary);
    background: linear-gradient(45deg, #6d1a5f, #904e95);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.auth-view-copyright-section {
    padding: 1em;
    z-index: 15;
    font-size: .825em;
    color: rgba(255, 255, 255, .82);
}
/* Change Autocomplete styles in Chrome
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-internal-autofill-selected,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgb(206,147,216) inset;
    background-color: rgb(206,147,216);
    color: white;
}*/
input:-webkit-autofill,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #fff inset!important
    /*-webkit-box-shadow: 0 0 0 1000px rgba(146, 77, 170, .20) inset!important;*/
}


.design-left {
    color: white;
    padding: 1em 1em 1em 1.5em;
    width: fit-content;
    position: relative;
    transition: background-color .135s linear;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: start;
    border-radius: 0 8px 8px 0;
}
.design-left span {
    color: white;
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 1px;
}

.design-left.design-left-title {
    font-weight: 700;
    padding-top: 1em;
    font-size: 1.3125em;
}

.design-left i {
    margin-right: 0.7500em;
    font-size: 1.125em;
    color: white;
}

.design-left:not(.design-left-title):hover {
    /*background: linear-gradient(to left, #9e64a36a, #9083cb6a);*/
    background-color: rgba(0,0,0,.075);
    color: white;
    cursor: pointer;
}

@media (max-width: 1023px) {
    .auth-view-form-container {
        /*display: block;*/
    }
}

@media (max-width: 959px) {
    .auth-view-design-container {
        font-size: 14px;
    }
    img.auth-view-form__app-logo {
        height: 4.3125rem;
    }
}

@media (max-width: 599px) {
    .auth-view-design-container {
        font-size: 13px;
    }
}