.form-control {
    display: flex;
    width: 100%;
    height: 2.5rem;
    padding: 1.125rem 1rem;
    margin-bottom: 1rem;
    align-items: center;
    gap: 0.625rem;
    flex-grow: 1;
    flex-shrink: 1;
    flex-wrap: wrap;

    border: 1px solid #000000;
    color: #565a5c;
    background-color: #fff;
    background-image: none;

    outline: none;
    -webkit-transition: border-color .15s
    ease-in-out, -webkit-box-shadow .15s
    ease-in-out;
    transition: border-color .15s
    ease-in-out, box-shadow .15s
    ease-in-out, -webkit-box-shadow .15s
    ease-in-out;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.form-control:focus {
    border-color: #8dc7e9;
    outline: none;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 .5rem #8dc7e9;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 .5rem #8dc7e9;
}

.error-input{
    border-color: #e55353;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 .5rem #e55353;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 .5rem #e55353;
}

:focus {
    outline: none;
}

.login-btn{
    width: 100%;
}

label {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    color: #000;
    font-family: Suisse Intl, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.375rem;
}

.background {
    background-image: url("https://www.ice.com/publicdocs/images/ICE-Login-01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-white, .shadowpanel{
    background-color: #ffffff;
}

.return-to-login{
    font-size: 0.875rem;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 0.375rem;
    align-items: center;
    padding: 0.5rem;
    margin: 0.5rem;
    cursor: pointer;
}
.return-to-login .return-to-login-text {
    font-weight: 700;
}
.return-to-login .return-to-login-icon {
    font-weight: 900;
}


.login-change-password, .login-forgot-password {
    color: #000000;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.pageLink, .pageLink:hover {
    color: #000000;
}

.sso-container{
    margin: 0;
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.d-flex {
    display: flex;
}

.footer-row li .copy-right {
    color: #000000;
    font-weight: 700;
    font-size: .8125rem;
}