* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body,
html {
    width: 100%;
    height: 100%;
    overflow: auto;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
}

body {
    display: none !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #0C9ECA;
    max-width: 100%;
    margin: 0px;
    padding: 0px;
    position: relative;
}

a {
    text-decoration: none;
    color: #0C9ECA;
}

button,
a {
    cursor: pointer;
}

.fourth-logins a,
.fourth-regions a {
    text-decoration: underline;
    margin: 1px;
}

.fourth-logins a:hover,
.fourth-regions a:hover {
    border: 1px solid;
    margin: 0px;
    border-color: #0A7EA2;
    color: #0A7EA2;
    text-decoration: underline;
}

.fourth-logins a:active,
.fourth-regions a:active {
    text-decoration: underline;
    border: none;
    margin: 1px;
    color: #086F8D;
}

.alert-container {
    max-width: 413px;
    min-height: 48px;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #4A5456;
    margin: 16px 16px auto auto;
    padding: 12px 16px 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.alert-info {
    color: white;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.close-button {
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 100%;
    margin-left: auto;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 24px 0px;
}

.login-form {
    box-sizing: border-box;
    width: 400px;
    background: #FFFFFF;
    border-radius: 4px;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.error>p {
    margin: 0 0 8px 0;
    font-size: 12px;
    color: #D33E3E;
}

.highlightError {
    border: 1px solid #D33E3E !important;
}

:invalid {
    box-shadow: none;
    /* FF */
    outline: 0;
    /* IE 10 */
}

.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 70px);
    margin: 0;
    padding: 0;
}

.login-container #greeting-logo img {
    display: block;
    max-width: 200px;
    max-height: 120px;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.claims-provider-list-buttons.social {
    margin-top: 16px
}

.accountButton,
.entry button,
.entry input[type="email"],
.entry input[type="password"],
.entry input[type="text"] {
    width: 100%;
    height: 32px;
    margin-top: 4px;
    margin-bottom: 4px;
    border-radius: 4px;
}

.accountButton,
.entry button {
    font-size: 16px;
    font-family: inherit;
    text-transform: uppercase;
    color: #fff;
    background-color: #0C9ECA;
    padding: 5px 0;
    border: 1px solid;
    border-color: #0C9ECA;
    outline: none;
}

#corporateSignInDiv button,
.claims-provider-list-buttons.social button {
    color: #0C9ECA;
    background-color: transparent;
}

.entry button:hover {
    background-color: #0A7EA2;
    border-color: #0A7EA2;
}

.entry button:active {
    background-color: #086F8D;
    border-color: #086F8D;
}

.claims-provider-list-buttons.social button:hover {
    border-color: #0A7EA2;
    color: #0A7EA2;
}

.claims-provider-list-buttons.social button:active {
    border-color: #086F8D;
    color: #086F8D;
}

.fourth-logins {
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin: 24px 0px;
}

.fourth-regions {
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin: 3px 0px;
}

.terms-and-conditions,
.support-site {
    color: #0CA2D0;
    text-decoration: none
}

.question-container {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 0px;
    cursor: pointer;
}

.img-icon {
    height: 24px;
    box-sizing: border-box;
    padding: 2px;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(245, 245, 245, 0.54);
    transition: opacity 500ms;
    display: none;
    opacity: 0;
    height: 100%;
    z-index: 99;
}

.overlay-target {
    display: block;
    opacity: 1;
}

.popup {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0px 0px;
    gap: 32px;
    margin: 70px auto;
    background: #FAFAFA;
    box-sizing: border-box;
    max-width: 320px;
    max-height: 300px;
    transition: all 1s ease-in-out;
    box-shadow: 0px 15px 12px rgba(11, 39, 145, 0.0287369), 0px 19px 38px rgba(3, 16, 92, 0.3);
    border-radius: 4px;
    top: 35%;
    left: 0;
    right: 0;
    z-index: 100;
    position: absolute;
}

.popup-target {
    display: flex;
}

.overlayclose-wrapper {
    width: 100%;
    height: 50px;
    background-color: #0C9ECA;
    border: none;
    border-radius: 0px 0px 4px 4px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: auto;
}

.are-you-a-new-user,
.customer-care {
    color: #333333;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    padding: 0px 10px 0px 24px;
}

.if-youve-never-logg,
.visit-our-hot-schedul {
    color: #4A5456;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
    display: table;
    padding: 0px 24px;
}

.fourth-link,
.cookie-policy {
    font-size: 12px;
    font-weight: 600;
    color: #333333;
}

.motto-banner {
    font-size: 10px;
    color: #333333;
    margin: 3px 0px;
}

.region-divider {
    border-top: 1px solid #D9D9D9;
    margin: 16px 0px;
}

.helpLink,
.tiny,
.Readonly,
.divider {
    display: none;
}

p#greeting-logo {
    margin-top: 38px;
}

p#greeting-title {
    margin-top: 40px;
    margin-bottom: 24px;
    color: #4A5456;
    font-weight: 400;
    font-size: 20px;
}

span#global-profile {
    font-weight: bold;
}

p#greeting-subtitle {
    margin-top: 8px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0px;
}

div#api {
    margin-top: 16px;
    display:flex;
    flex-direction: column-reverse;
}

#forgotPassword {
    display: none;
}

label[for="email"],
label[for="password"],
.intro {
    display: none;
}

#terms-and-conditions-footer {
    height: 56px;
    width: 100%;
    background-color: #087090;
    position: fixed;
    bottom: 0px;
    color: #FFFFFF;
    text-align: center;
    line-height: 50px;
    font-size: 11px;
    margin-top: auto;
}

.intro {
    display: none;
}

.rememberMe {
    display: none;
}

.fourthRememberMe {
    display: flex;
    align-items: center;
}

label[for="fourthRememberMe"],
label[for="rememberMe"] {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}

input#fourthRememberMe,
input#rememberMe {
    border-radius: 2px;
    margin: 10px 8px 8px 3px;
    width: 18px;
    height: 18px;
}

input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
select,
textarea {
    height: 55px;
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #B0B0B0;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    color: #333333;
    border: 1px solid;
    border-color: #0C9ECA;
    outline: none;
}

input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #757575;
}

@media only screen and (max-width: 1180px) {
    .login-form {
        width: 343px;
        padding: 0 16px;
    }

    .popup {
        position: fixed;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    #corporate,
    .accountButton,
    .entry button,
    .entry input[type="email"],
    .entry input[type="password"],
    .entry input[type="text"] {
        height: 48px;
    }

    .alert-container {
        margin: 16px auto;
    }
}

@media only screen and (max-height: 820px) {
    .login-container {
        height: auto;
        margin: 0 0 70px 0;
    }
}

@media only screen and (max-width: 392px) {
    .login-container {
        margin-bottom: 76px;
    }

    .accountButton,
    .entry button,
    .entry input[type="email"],
    .entry input[type="password"],
    .entry input[type="text"] {
        height: 48px;
    }

    .fourth-regions {
        font-size: 11px;
    }

    .alert-container {
        margin: 16px;
    }
}

@media only screen and (max-height: 390px) {
    .popup {
        margin: 10px auto;
        top: 10%;
    }
}
