@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");

:root {
    --field-bg: #FFFFFF;
    --primary-color: #000000;
    --primary-color-60: #001552;
    --dark-blue: #013BAE;
    --dark-blue-5: #013BAE0D;
    --dark-blue-40: rgba(1, 74, 217, 0.4);
    --font-size-small: 14px;
    --font-size-medium: 15px;
    --font-size-large: 16px;
}

html {
    font-family: 'Open Sans','Helvetica','Arial',sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0.3px;
    line-height: 22px;
    font-size: var(--font-size-small);
    color: var(--primary-color);
}

a {
    font-weight: 600;
    color: var(--dark-blue);
    text-decoration: none;
}

label {
    background-color: white;
    position: absolute;
    top: -11px;
    width: fit-content;
    padding: 0 4px 0 4px;
    left: 12px;
    height: 24px;
    font-size: 12px;
    color: #595959;
    text-overflow: ellipsis;
    white-space: nowrap;
}

span.hint {
    background-color: white;
    width: fit-content;
    padding: 0 0.5rem 0.5rem 0.5rem;
    font-size: 12px;
    color: #595959;
    margin-top: -24px;
    margin-bottom: 8px;
}

span.hint.success {
    color: #236626;
}

span.hint.warning {
    color: #ed6c02;
}

span.hint.error {
    color: #b60202;
}

input:focus-visible + label {
    color: #013bae;
}

label:hover {
    color: #013bae;
}

button {
    cursor: pointer;
    border: none;
}

button.secondary {
    background: transparent;
    font-weight: 600;
    color: var(--dark-blue);
    text-decoration: none;
    margin-top: 16px;
}

button.secondary:disabled {
    color: rgba(0,0,0,0.65);
    cursor: default;
}

.submission-form {
    background: #e8e8e8;
    background: radial-gradient(circle,rgba(232, 232, 232, 1) 0%, rgba(255, 255, 255, 1) 100%);
    place-self: center;
    width: 100vw;
    min-height: 100vh;
    height: fit-content;
    display: flex;
    justify-content: center;
}

.submission-form__panel {
    z-index: 1000;
    background: white;
    margin: auto 0;
    padding: 0 40px;
    max-width: 520px;
    width: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.05);
    border-radius: 20px;
    min-height: 700px;
}

.submission-form__title {
    font-family: Poppins, "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.1px;
    margin-top: 12px;
    margin-bottom: 24px;
    display: inline-block;
    text-align: center;
    position: relative;
    width: fit-content;
    top: 2px;
    margin-left: 12px;
}

.submission-form__subtitle {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin-top: 16px;
}

.submission-form__sep {
    display: block;
    width: calc(100% + 80px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    height: 0;
    margin: -8px -40px 4px;
}

.mobile-only {
    display: none;
}


/* mobile */
@media (max-width: 520px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: initial;
    }

}


.submission-form__panel form {
    padding: 32px 0 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-container {
    position: relative;
    margin-bottom: 24px;
}

.field {
    width: 100%;
    height: 48px;
    background-color: var(--field-bg);
    border: 1px solid #c4c4c4;
    border-radius: 4px;
    padding: 0 18px;
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    box-shadow: 0 0 0 0 white inset !important;
    background-color: var(--field-bg) !important;
}

.field:focus-visible, .field:active {
    border: #013bae solid 2px;
    padding-left: 17px;
}

.field.success {
    border: #236626 solid 1px;
}

.field:focus-visible.success, .field:active.success {
    border: #236626 solid 2px;
    padding-left: 17px;
}

.field.warning {
    border: #ed6c02 solid 1px;
}

.field.warning, .field:focus-visible.warning, .field:active.warning {
    border: #ed6c02 solid 2px;
    padding-left: 17px;
}

.field.error {
    border: #b60202 solid 1px;
}

.field.error, .field:focus-visible.error, .field:active.error {
    border: #b60202 solid 2px;
    padding-left: 17px;
}

.field:not(:focus-visible):hover {
    border: 2px solid #c4c4c4;
    padding-left: 17px;
}

.field.error:not(:focus-visible):hover {
    border: 2px solid #b60202;
    padding-left: 17px;
}

.field.warning:not(:focus-visible):hover {
    border: 2px solid #ed6c02;
    padding-left: 17px;
}

.field.success:not(:focus-visible):hover {
    border: 2px solid #236626;
    padding-left: 17px;
}

input.success + label {
    color: #236626;
}

input.warning + label {
    color: #ed6c02;
}

input.error + label {
    color: #b60202;
}

.container {
    margin-top: 20px;
}

.container > a {
    float: right;
}

.container__input {
    margin-top: 4px;
    position: relative;
}

.container__input input {
    padding-right: 44px;
    margin-right: 2px;
}

.container__input button {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    border: 0;
    cursor: pointer;
    background: none;
    top: calc(50% - 10px);
}

.submission-form__btn {
    height: 50px;
    border-radius: 4px;
    color: #FFF;
    background-color: var(--dark-blue);
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: 0.2s;
    margin-top: auto;
}

.submission-form__btn:hover {
    filter: opacity(0.8);
    box-shadow: 0px 2px 8px grey;
}

.submission-form__btn.btn-alt {
    color: var(--dark-blue);
    background-color: #FFF;
    border: 1px solid;
    font-weight: 600;
}

.login-alternatives-container {
    margin-top: 16px;
    padding-top: 0.25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    display: block;
}

/* mobile */
@media (max-width: 520px) {
    .logo {
        display: none;
    }
}

.exit__btn {
    position: fixed;
    top: 0;
    right: 0;
    border-radius: 24px;
    text-transform: uppercase;
    background-color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.2s;
    padding: 12px 18px;
    visibility: hidden;
}

.exit__btn:hover {
    filter: brightness(0.92);
}

.alert-message {
    height: fit-content;
    position: relative;
}

.alert-message__list {
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    list-style: none;
}

.alert-message__list[role='alert'] {
    margin-top: 10px;
    background-color: #f8d7da;
}


.alert-message__list[role='alert'] .alert-message__item, .alert-message__list[role='alert'] .alert-message__item > span {
    color: #510506;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
}

.alert-message__list[role='alert'] .alert-message__item > span {
    color: #510506;
    font-weight: 400;
    font-size: 14px;
    padding-left: 5px;
}

.alert-message__item svg {
    flex-shrink: 0; 
  }

.alert-message__list[role='alert'] path {
    fill: #510506;
}

.alert-message__list[role='info'] {
    background-color: #e6ebf7;
    border-color: #e6ebf7;
}

.alert-message__list[role='info'] .alert-message__item, .alert-message__list[role='info'] .alert-message__item > span {
    color: #001846;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
}

.alert-message__list[role='info'] .alert-message__item > span {
    color: #001846;
    font-weight: 400;
    font-size: 14px;
}

.alert-message__list[role='info'] path {
    fill: #001846;
}

.alert-message__list[role='warn'] {
    background-color: #fff4e5;
    border-color: #e6ebf7;
}

.alert-message__list[role='warn'] .alert-message__item, .alert-message__list[role='warn'] .alert-message__item > span {
    color: #663d00;
    font-weight: 600;
    font-size: 16px;
    width: unset;
    justify-content: center;
}

.alert-message__list[role='warn'] .alert-message__item > span {
    color: #663d00;
    font-weight: 400;
    font-size: 14px;
    width: unset;
    letter-spacing: 0.17px;
}

.alert-message__list[role='warn'] path {
    fill: #663d00;
}

.alert-message__item {
    font-size: medium;
    font-weight: bold;
    display: flex;
    align-items: flex-start;
}

.alert-message__item > svg  {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
    margin-right: 6px;
}

.toggle-password {
    position: absolute;
    right: 9px;
    top: 9px;
    padding: 5px;
    background-color: transparent;
    line-height: 0; /* need to override default values applied by * styles to not add extra unnecessary height to the element */
    letter-spacing: 0; /* need to override default values applied by * styles to not add extra unnecessary height to the element */
}

.alert-message__close-btn {
    position: absolute;
    padding: 6px;
    top: 0;
    right: 0;
    border-radius: 24px;
    background-color: transparent;
    font-weight: 600;
    color: #292936;
    border-color: transparent;
    font-size: 18px;
}

.alert-message__close-btn:hover {
    filter: brightness(0.92);
}

.support-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.info-messages {
    width: calc(100% + 80px);
    padding: 14px 16px;
    background-color: var(--dark-blue-5);
    border-radius: 0.25rem;
    color: var(--primary-color-60);
}

.info-messages__text {
    margin-left: 14px;
}

.support-link {
    color: var(--primary-color-60);
}

.action-links__not-a-customer {
    margin-right: 8px;
}

.action-links a {
    text-decoration-color: var(--dark-blue-40);
}

.action-links a:hover {
    text-decoration-color: var(--dark-blue);
}

.resend_sms_button {
    text-decoration:none;
    float:right;
    margin: -1em;
    padding: 1em;
}

.login-alternatives-splitter {
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    width: 100%;
    align-items: center;
}

.login-alternatives-splitter .splitter-line {
    height: 1px;
    flex: 1 1 0%;
    background-color: #c4c4c4;
}

.login-alternatives-splitter .splitter-text {
    padding-left: 16px;
    padding-right: 16px;
    font-family: "Open Sans", sans-serif;
    color: #a0a0a0;
}

.custom-apple-signin-button, .custom-google-signin-button {
    flex-grow: 1;
    height: 40px;
    background-color: #fff;
    color: #3c4043;
    transition: background-color .218s, border-color .218s;
    border: 1px solid #dadce0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.25px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.google-signin,.apple-signin {
    width: 50%;
}

.google-signin {
     margin-right: 16px;
}
  
.custom-apple-signin-button .apple-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
  
.custom-apple-signin-button:hover {
    border-color: #d2e3fc; 
    background: rgba(66,133,244,.04)
}
  
.custom-apple-signin-button:active {
    border-color: #d2e3fc; 
    background: rgba(66,133,244,.04)
}  

.another-device-signin-button {
    margin-top: 16px;
    margin-bottom: 16px;
    width: 100%;
    height: 50px;
    background-color: #fff;
    color: var(--dark-blue);
    transition: background-color .218s, border-color .218s;
    border: 1px solid;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.another-device-signin-button:hover {
    border-color: #d2e3fc; 
    background: rgba(66,133,244,.04)
}
  
.another-device-signin-button:active {
    border-color: #d2e3fc; 
    background: rgba(66,133,244,.04)
}  

.pseudo-button {
    display: block;
    text-decoration: none;
    cursor: pointer;
    border: none;
    padding: 0;
    line-height: 50px;
    appearance: auto;
    text-align: center;
    vertical-align: middle;
    margin-top: 16px;
    height: 50px;
    border-radius: 4px;
    color: #FFF;
    background-color: var(--dark-blue);
    font-weight: 500;
    font-size: var(--font-size-medium);
    letter-spacing: 0.5px;
    transition: 0.2s;
}

.auto-login-button {
    position: relative;
}

.auto-login-button span {
    position: relative;
    z-index: 2;
    color: #FFF;
}

.auto-login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color-60);
    border-radius: 4px;
    z-index: 1;
    animation: countdown 4s linear forwards;
}

@keyframes countdown {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}


.backBtn {
    display: inline-block;
    position: relative;
    top: 8px;
    left: 0;
}

.titlebar {
    margin-left: -20px;
}

.support-container > .info-messages {
    margin-left: -40px;
}


@media screen and (width <= 520px) {

    .submission-form {
        background: white;
    }

    .support-container > .info-messages {
        margin-left: 0;
    }

    .forgot_links a {
        font-size: 12px;
    }

    .alert-message {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .alert-message__list {
        margin-top: 20px;
    }

    .submission-form {
        background: #ffffff;
        height: fit-content;
    }

    .submission-form__panel {
        top: 0;
        box-shadow: none;
        border-radius: 0;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
        height: 100%;
        min-height: fit-content;
    }

    .titlebar {
        margin-left: 0;
    }

    .submission-form__sep {
        width: 100dvw;
        margin-left: -16px;
    }

    .info-messages {
        margin: 12px 0 0;
        padding: 12px;
        width: 100%;
    }


    .submission-form__panel > img {
        display: none;
    }

    .submission-form__panel form {
        flex-grow: 1;
        padding: 12px 0 0 0;
    }

    .alert-message__list[role='alert'] {
        margin-top: 10px;
    }

    .google-signin, .apple-signin {
        width: 100%;
    }

    .google-signin {
        margin-bottom: 16px;
        margin-right: 0;
    }

}

@media screen and (width <= 520px) {
    .login-alternatives-container {
        flex-direction: column;
    }
}

#resendForm {
    display: contents;
}

#resend_mfa_form {
    display: contents;
}

/* Fix to remove MS Edge password reveal button */
input::-ms-reveal,
input::-ms-clear {
    display: none;
}

/* remove the autofill color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
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 #000 inset;
    transition: background-color 5000s ease-in-out 0s;
    font-size: var(--font-size-small) !important;
    font-family: inherit;
}

input:-webkit-autofill::first-line {font-size: var(--font-size-small);}

.version {
    text-align: right;
}

.version .version-text {
    font-size: 12px;
    letter-spacing: normal;
}

.otc-container{
    align-items: center;
    justify-content: center;
    display: flex;

    padding-top: 20px;
    padding-bottom: 20px;
}

.otc-box{
    padding: 10px 25px 10px 25px;
    border-radius: 8px;

    background: #f5f5f5;
    border: 1px gray;
}

.otc-text{
    font-family: Open Sans;
    font-size: 18px;
    font-weight: 600;
    line-height: 28.8px;
    letter-spacing: 4px;
    text-align: center;

    color: #041123;
}

.otc-info{
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.15px;
    text-align: center;
    color: #595959;
}

.otc-info span{
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.15px;
    text-align: center;
    color: #595959;
}

.qr-code-container {
    display: inherit;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.qr-code-image {
    height: 160px;
    border-width: 1px;
    border-style: solid;
    border-color: lightgrey;
}

.two-step-verification-container {
  margin: 32px 0 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.confirmation-numbers-container {
    display: grid;
    grid-template-columns: auto auto;
    margin: 24px 0 24px 0;
    justify-content: center;
}

.confirmation-number {
    padding: 13px;
    height: 49px;
    border-radius: 45px;
    border: 2px var(--dark-blue-40) solid;
    background-color: white;
    cursor: pointer;
    -webkit-transition : border 200ms ease-out;
    -moz-transition : border 200ms ease-out;
    -o-transition : border 200ms ease-out;
    transition : border 200ms ease-out;
}

.confirmation-number:disabled,
.confirmation-number[disabled] {
  border: 2px solid gray;
}



.confirmation-number:disabled.selected,
.confirmation-number[disabled].selected {
    border: 2px var(--dark-blue) solid;
}

.confirmation-number b{
    color: var(--dark-blue);
    text-align: center;
    cursor: pointer;
}

.confirmation-number:disabled:not(.selected) b,
.confirmation-number[disabled]:not(.selected) b {
    color: gray;
}

.confirmation-number-standard-container {
    display: flex;
    justify-content: center;
    margin: 32px 0 24px 0;
    text-align: center;
}

/* New classes for v3 */
.version {
    position: absolute;
    top: calc(100% - 24px);
    left: calc(100% - 300px);
    text-align: right;
    width: 270px;
    white-space: nowrap;
}

.en-logo {
    margin: 24px auto 12px auto;
}

.forgot_links {
    display: inline-block;
    margin-top: -20px;
    margin-bottom: 30px;
}

@media (max-width: 520px) {
    .version {
        display: none;
    }
}

.pure-material-progress-circular {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    border: none;
    border-radius: 50%;
    padding: 0;
    width: 24px;
    height: 24px;
    margin-left: 24px;
    margin-right: 24px;
    color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    background-color: transparent;
    font-size: 12px;
    overflow: hidden;
}

.pure-material-progress-circular::-webkit-progress-bar {
    background-color: transparent;
}

/* Indeterminate */
.pure-material-progress-circular:indeterminate {
    -webkit-mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%);
    mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%);
    animation: pure-material-progress-circular 6s infinite cubic-bezier(0.3, 0.6, 1, 1);
}

:-ms-lang(x), .pure-material-progress-circular:indeterminate {
    animation: none;
}

.pure-material-progress-circular:indeterminate::before,
.pure-material-progress-circular:indeterminate::-webkit-progress-value {
    content: "";
    display: block;
    box-sizing: border-box;
    margin-bottom: 0.25em;
    border: solid 0.25em transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    width: 100% !important;
    height: 100%;
    background-color: transparent;
    animation: pure-material-progress-circular-pseudo 0.75s infinite linear alternate;
}

.pure-material-progress-circular:indeterminate::-moz-progress-bar {
    box-sizing: border-box;
    border: solid 0.25em transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: transparent;
    animation: pure-material-progress-circular-pseudo 0.75s infinite linear alternate;
}

.pure-material-progress-circular:indeterminate::-ms-fill {
    animation-name: -ms-ring;
}

@keyframes pure-material-progress-circular {
    0% {
        transform: rotate(0deg);
    }
    12.5% {
        transform: rotate(180deg);
        animation-timing-function: linear;
    }
    25% {
        transform: rotate(630deg);
    }
    37.5% {
        transform: rotate(810deg);
        animation-timing-function: linear;
    }
    50% {
        transform: rotate(1260deg);
    }
    62.5% {
        transform: rotate(1440deg);
        animation-timing-function: linear;
    }
    75% {
        transform: rotate(1890deg);
    }
    87.5% {
        transform: rotate(2070deg);
        animation-timing-function: linear;
    }
    100% {
        transform: rotate(2520deg);
    }
}

@keyframes pure-material-progress-circular-pseudo {
    0% {
        transform: rotate(-30deg);
    }
    29.4% {
        border-left-color: transparent;
    }
    29.41% {
        border-left-color: currentColor;
    }
    64.7% {
        border-bottom-color: transparent;
    }
    64.71% {
        border-bottom-color: currentColor;
    }
    100% {
        border-left-color: currentColor;
        border-bottom-color: currentColor;
        transform: rotate(225deg);
    }
}

#gsi_button > div > div > div > div:first-of-type {
    width: auto !important;
    max-width: initial !important;
}

#gsi_button > div > div > div > div:last-of-type > div > span {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

@media (prefers-color-scheme: dark) {

    body {
        background: #1E1E1E;
    }

    * {
        color: white;
    }

    .submission-form {
        background: #121212;
        background: radial-gradient(circle, rgba(18, 18, 18, 1) 0%, rgba(30, 30, 30, 1) 100%);
    }

    :root {
        --field-bg: #121212;
        --primary-color: #ffffff;
    }

    span.hint {
        background-color: #1e1e1e;
    }

    .submission-form__panel {
        background: #1E1E1E;
    }

    .version-text {
        color: white;
    }

    .en-logo {
        filter: brightness(0) invert(1);
    }

    label {
        background-color: #1E1E1E;
        color: rgb(178, 178, 178);
    }

    .field {
        background-color: #1E1E1E;
        color: white;
    }

    .info-messages {
        color: rgb(178, 178, 178);
    }

    a {
        color: rgb(144, 202, 249);
    }

    .field:focus-visible, .field:active {
        border: rgb(144, 202, 249) solid 2px;
        padding-left: 17px;
    }

    input:focus-visible + label {
        color: rgb(144, 202, 249);
    }

    label:hover {
        color: rgb(144, 202, 249);
    }

    .custom-apple-signin-button {
        background-color: #1E1E1E;
        color: white;
    }

    .custom-google-signin-button {
        color: white !important;
        background: #1E1E1E !important;
        transition: none !important;
    }

    .otc-box{
        background: #1E1E1E;
        border: 1px solid white;
    }

    .otc-text {
        color: white;
    }

    .apple-icon {
        filter: invert(1);
    }

    .submission-form__btn {
        margin-bottom: 16px;
        background-color: rgb(144, 202, 249);
        color: rgb(10, 10, 10);
    }

    path.toggle-password-icon {
        fill: rgb(178, 178, 178);
    }

    .another-device-signin-button {
        background-color: #1E1E1E;
        color: white;
    }

    button.secondary {
        color: white;
    }

    button.secondary:disabled {
        color: white;
    }

    .alert-message__list[role='info'] {
        background-color: rgb(36, 51, 62);
        border-color: rgb(36, 51, 62);
        color: rgb(211, 234, 253);
    }

    .alert-message__list[role='info'] .alert-message__item > span, .alert-message__list[role='info'] .alert-message__item {
        color: rgb(211, 234, 253);
    }

    .alert-message__list[role='info'] path {
        fill: rgb(211, 234, 253);
    }

    .alert-message__list[role='alert'] {
        background-color: rgb(22, 11, 11);
        border-color: rgb(22, 11, 11);
        color: rgb(244, 199, 199);
    }

    .alert-message__list[role='alert'] .alert-message__item > span, .alert-message__list[role='alert'] .alert-message__item {
        color: rgb(244, 199, 199);
    }

    .alert-message__list[role='alert'] path {
        fill: rgb(244, 67, 54);
    }
    .submission-form__sep {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    #gsi_button > div > div > div > div:first-of-type {
        border: none;
        border-radius: 4px;
        background-color: transparent;
    }


    #gsi_button > div > div > div > div:last-of-type > div {
        background-color: transparent;
        margin: 0;
    }

    .otc-info {
        color: rgb(178, 178, 178);
    }

    .otc-info span {
        color: rgb(178, 178, 178);
    }

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        color: white !important;
        transition: background-color 0s 600000s, color 0s 600000s !important;
    }

    .auto-login-button {
        background-color: #00207d;
    }
}

@media screen and (prefers-color-scheme: dark) and (width <= 520px) {
    .submission-form {
        background: #1E1E1E;
    }
}

@media screen and (height <= 800px) {
    .version {
        display: none;
    }
    .submission-form {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
