html {
    height: 100%;
}

body {
    background-color: #F9F9F9;
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
}

.authenticator-setup-container {
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
}

/*HEADER*/
.form-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--app-primary-color);
    padding: 8px 25% 0 25%;
}

#kc-header-wrapper {
    font-size: 24px;
    font-weight: 300;
    line-height: 26px;
    color: var(--active-text-color);
}

#kc-locale-dropdown>a {
    color: var(--active-text-color);
}

#kc-header {
    margin-left: 30px;
}

#kc-locale {
    margin-right: 30px;
}

/*header title*/
#kc-page-title {
    font-weight: 100;
    font-size: 24px;
    margin-bottom: 25px;
    margin-top: 25px;
}

/*locale container*/
#kc-locale-dropdown {
    position: relative;
}

#kc-locale-dropdown>a {
    display: block;
    padding: 11px 10px 12px;
    line-height: 12px;
    font-size: 12px;
    text-decoration: none;
}

#kc-locale-dropdown>a::after {
    content: "\2c5";
    margin-left: 4px;
}

#kc-locale-dropdown ul li a {
    padding: 1px 11px;
    font-size: 12px;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    line-height: 20px;
}

#kc-locale-dropdown ul li a:hover {
    color: rgba(var(--text-color), 0.2);
    background-color: rgba(var(--primary-color), 0.2);
    border-color: rgba(var(--primary-color), 0.2);
}

#kc-locale-dropdown ul {
    position: absolute;
    z-index: 2000;
    list-style: none;
    display: none;
    padding: 5px 0px;
    margin: 0px;
    background-color: #FFF !important;
    border: 1px solid #b6b6b6;
    border-radius: 1px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
    min-width: 100px;
}

#kc-locale-dropdown:hover ul {
    display: block;
}

/*CONTENT*/
#kc-content {
    width: 50%;
    min-width: 400px;
    height: auto;
    min-height: 100vh;
    background-color: #FFF;
    border-color: #CECECE;
    border-style: solid;
    border-width: 0 1px;
    padding: 0 30px;
}

#kc-totp-settings li img {
    margin-top: 15px;
    margin-bottom: 5px;
    border: 1px solid #eee;
}

#kc-totp-settings li p a {
    color: #e63323;
    text-decoration: none;
}

#kc-totp-settings li p a:hover, 
#kc-totp-settings li p a:focus {
    color: #e63323;
    text-decoration: underline;
}

.login-config-button-group {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.login-config-button-group button {
    margin-right: 8px;
}