body {
    background: #f0f2f5;
    font-family: 'Roboto', sans-serif;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg-img img.full-img {
    -webkit-animation: fadeInLeftAnimation ease-in 0.5s;
            animation: fadeInLeftAnimation ease-in 0.5s;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.bg-img img.responsive-img {
    display: none;
    -webkit-animation: fadeInRightAnimation ease-in 0.5s;
            animation: fadeInRightAnimation ease-in 0.5s;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInLeftAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
                transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@keyframes fadeInLeftAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
                transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

@-webkit-keyframes fadeInRightAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
                transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@keyframes fadeInRightAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
                transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

@media (max-width: 1440px) {
    .bg-img {
        left: 70%;
    }
    .bg-img img.full-img {
        display: none;
    }
    .bg-img img.responsive-img {
        display: block;
        width: 10em;
    }
}

.full-text {
    display: none;
}

@media (max-width: 768px) {
    .full-text {
        display: block;
    }
    .responsive-text {
        display: none;
    }
}

.logo {
    margin-bottom: 15px;
    font-size: 30px;
    max-width: 7em;
}

.title {
    margin-bottom: 8px;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-align: left;
    color: #2f3439;
    letter-spacing: -1px;
}
@media (max-width: 767px) {
    .title, .subtitle {
        text-align: center;
    }
}

.subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #707070;
}

/* Styling title and subtitle for Email Verification screen */
.confirmation_title {
    margin-bottom: 8px;
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-align: left;
    color: #2f3439;
    letter-spacing: -1px;
}

.confirmation_subtitle {
    font-size: 18px;
    color: #707070;
}

@media (max-width: 575px) {
    .confirmation_title {
        font-size: 20px;
    }
    .confirmation_title, .confirmation_subtitle {
        text-align: center;
    }
    .confirmation_subtitle {
        font-size: 14px;
    }
}

/*End email confirmation title & subtitle styling */

.section-heading {
    font-size: 16px;
    font-weight: bold;
    color: rgb(0,0,0,0.85);
    padding-top: 1em;
    margin-bottom: 1em;
}

/* Styling page wrappers */
#kc-header, #kc-content {
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

#kc-header {
    text-align: left;
    margin-top: 7%;
    margin-bottom: 3%;
}

#kc-multicol-container-wrapper {
    display: flex;
}

/* Styling for signup page */
.marketing_container {
    background-color: #e5ebec;
    border-radius: 10px;
    padding: 50px;
    min-width: 455px;
}
@media (max-width: 1199px) {
    .marketing_container {
        display: none;
    }
}

.marketing_headline {
    font-size: 20px;
    font-weight: bold;
    color: #707070;
    margin-bottom: 50px;
}

.marketing_valueprop {
    display: flex;
    margin-bottom: 50px;
}

.marketing_valueprop--icon {
    margin-right: 18px;
    align-self: center;
}

.marketing_valueprop--title {
    font-size: 16px;
    font-weight: bold;
}

.marketing_trusted {
    margin-top: 30px;
}

.signup_logo {
    max-width: 275px;
    margin-left: 50px;
    margin-bottom: 15px;
}

.signup_logo-responsive {
    display: none;
}
@media (max-width: 1199px) {
    .signup_logo-responsive {
        display: block;
    }
}
@media (max-width: 767px) {
    .signup_logo-responsive {
        margin-left: auto;
        margin-right: auto;
    }
}
/* End styling for signup page */

/* Styling for email verification page */
.confirmation_container {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
}
.confirmation_container-icon {
    margin-right: 14px;
    margin-top: 6px;
}
.confirmation_container-title {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 20px;
}
.confirmation_container-text {
    font-size: 16px;
}
@media (max-width: 575px) {
    .confirmation_container-title {
        font-size: 18px;
    }
    .confirmation_container-text {
        font-size: 14px;
    }
}


.confirmation_valueprop-list {
    display: flex;
    margin-bottom: 20px;
    gap: 50px;
}
@media (max-width: 575px) {
    .confirmation_valueprop-list {
        flex-direction: column;
        gap: 20px;
    }
}
.confirmation_valueprop {
    width: 100%;
}
.confirmation_valueprop-title {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
}
/* End styling for email verification page */

hr.sign-in-separator {
    border-top: 2px solid #006ba7;
    width: 5em;
    float: left;
}

/* Replacing default styling for KC alerts */
.alert{
    padding: 10px 15px;
}
.alert-info {
    background-color: #E6F7FF!important;
    border: 1px solid #91D5FF;
}
.alert-info .kc-feedback-text {
    font-family: 'Roboto', sans-serif;
    color: rgb(0,0,0,0.85);
}

.alert-warning {
    background-color: #fffbe6!important;
    border: 1px solid #ffe58f;
}
.alert-warning .kc-feedback-text {
    color: rgb(0,0,0,0.85);
}

.alert-error {
    background-color: #fff1f0!important;
    border: 1px solid #ffa39e;
}

.alert-error .kc-feedback-text {
    font-family: 'Roboto', sans-serif;
    color: #dd4b39;
}

.alert-success {
    background-color: #f6ffed!important;
    border: 1px solid #b7eb8f;
}

.alert-success .kc-feedback-text {
    color: rgb(0,0,0,0.85);
}

#input-error-otp-code {
    display: block;
    color: #dd4b39;
    background-color: #fff1f0;
    border: 1px solid #ffa39e;
    border-radius: 3px;
    padding: 15px;
    margin-top: 0.5em;
    margin-bottom: 1em;
}
.form-error {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #ff4d4f;
    padding-left: 10px
}

/* Helper classes */
.space-v__top {
    margin-top: 15px;
}
.space-v__top--large {
    margin-top: 20px;
}
.space-v__top--xlarge {
    margin-top: 50px;
}
.space-v__top--small {
    margin-top: 8px;
}
.space-v__bottom {
    margin-bottom: 15px;
}
.space-v__bottom--large {
    margin-bottom: 20px;
}
.space-v__bottom--xlarge {
    margin-bottom: 50px;
}
.space-v__bottom--small {
    margin-bottom: 8px;
}

.uppercase {
    text-transform: uppercase;
}

/* End helper classes */

.form-instructions {
    margin-bottom: 1em;
    color: rgba(0,0,0,0.85);
}

.form-instructions-multiline{
    margin-bottom: 0;
    color: rgba(0,0,0,0.85);
}

.signin-message {
    margin-bottom: 8px;
    font-size: 16px;
    color: #000000;
}

#kc-content {
    margin-top: 5em;
}

#kc-totp-settings,
#kc-backup-codes-instructions {
    padding-left: 16px;
}

#kc-backup-codes-instructions {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(0,0,0,0.85);
}

p.totp-instructions {
    margin-bottom: 1em;
    color: rgba(0,0,0,0.85);
}

p.totp-alternative {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 1em;
}

#kc-totp-secret-qr-code {
    width: 150px;
    display: block;
    margin: auto;
}

.totp-secret-key {
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    text-align: center;
    padding: 16px;
}

.info-alert {
    display: flex;
    align-items: start;
    background-color: #e6f7ff;
    border: 1px solid #91d5ff;
    border-radius: 4px;
    padding: 15px 15px 15px 20px;
    margin-bottom: 2em;
}

.info-alert img {
    margin-right: 10px;
    margin-top: 3px;
}

.success-msg img {
    margin-right: 10px;
}

.success-msg {
    display: flex;
    font-size: 16px;
    background-color: #f6ffed;
    border: 1px solid #b7eb8f;
    border-radius: 2px;
    padding: 12px 16px 12px 16px;
    margin-bottom: 1em;
}

.verification-code-form {
    margin-left: 16px;
}

.verification-code-label {
    font-weight: normal;
}

.verification-code-container {
    display: block;
    width: 100%;
    border: 1px solid rgb(0,0,0,0.15);
    border-radius: 4px;
    padding: 4px 4px 4px 16px;
    margin-bottom: 2em;
}

.backup-codes-list-container {
    background-color: #fff;
    border: 1px solid #d9d9d9;
    padding: 20px 20px 30px 20px;
    margin-bottom: 1em;
}

.backup-codes-list {
    max-width: 235px;
    column-count: 2;
}

@media (max-width: 768px) {
    body {
        font-size: 12px;
    }
    #kc-header, #kc-content {
        width: 90%;
    }
    #kc-header {
        margin-top: 15%;
        text-align: center;
    }
    hr.sign-in-separator {
        float: none;
    }
    .bg-img {
        display: none;
    }    
}

@media (min-width: 769px) {
    #kc-header, #kc-content {
        width: 530px;
    }
}

a.continue-link-btn {
    max-width: 215px;
}

a.pnap-link-btn.btn-flat {
    background-color: #006ba7;
    border-color: #006ba7;
    border-radius: 4px;
    font-size: 14px;
}

.form-control,
#kc-form-options .btn {
    border-radius: 4px;
    font-size: 14px;
}

#kc-select-try-another-way-form {
    text-align: center;
}

#kc-select-credential-form {
    padding-top: 6px;
}

.multicol-form {
    display: flex;
    gap: 10px;
}
@media (max-width: 575px) {
    .multicol-form {
        flex-direction: column;
    }
}

.multicol-form_column {
    flex-grow: 1;
}

.username-container, .password-container {
    position: relative;
}

.username-container input,
.password-container input {
    padding-left: 30px;
    padding-right: 30px;
}

.username-container img,
.password-container .lock-img {
    position: absolute;
    width: 16px;
    left: 8px;
    top: 8px;
}

.password-container .eye-img {
    position: absolute;
    width: 16px;
    right: 8px;
    top: 8px;
    cursor: pointer;
}

.forgot-password-container {
    margin-top: 5px;
    margin-bottom: 20px;
}

.one-time-code-container {
    margin-top: 15px;
    margin-bottom: 20px;
}

#kc-login,
#kc-form-buttons input.btn-block,
button.btn-block {
    float: right;
    margin-top: 0;
    margin-bottom: 1em;
    border-radius: 4px;
    background-color: #006ba7;
}

#kc-form-buttons input#kc-cancel {
    background-color: #ffffff;
    border-color: #d9d9d9;
    color: #4d4d4d;
}

button.cancel-btn {
    border: none;
    color: #3c8dbc;
    display: block;
    margin: auto;
    margin-bottom: 2em;
}

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

button#copyCodes,
button#generateCodes {
    font-size: 12px;
    color: #4d4d4d;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 8px 16px 8px 16px;
    margin-bottom: 1em;
    transition: 0.2s;
}

button#generateCodes {
    margin-left: 8px;
}

button#copyCodes:hover,
button#generateCodes:hover {
    border-color: #006ca8;
    transition: 0.2s;
}

button#copyCodes img{
    margin-right: 8px;
}

.auth-select-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 16px 20px 16px 20px;
    border: 2px solid transparent;
    border-radius: 4px;
    box-shadow: 0 0 6px 0 rgb(0 14 156 / 20%);
    margin-bottom: 1em;
    min-height: 96px;
    transition: 0.2s;
}

.auth-select-container:hover {
    background-color: #e6f7ff;
    border: 2px solid #006ca8;
    cursor: pointer;
    transition: 0.2s;
}

.auth-select-container:hover .auth-select-title {
    color: #006ca8;
    transition: 0.2s;
}

.auth-select-title {
    font-size: 16px;
    font-weight: bold;
    color: #595959;
    line-height: 1.5em;
    transition: 0.2s;
}

.auth-select-icon {
    margin-right: 20px;
}

#kc-error-message p {
    margin: 0;
}

.checkbox {
    margin-top: 0px;
    margin-bottom: 0px;
    float: right;
}

.remember-device-checkbox,
.confirm-msa-checkbox {
    margin-bottom: 20px;
    padding: 0;
    display: block;
}
@media (max-width: 768px) {
    .remember-device-checkbox {
        width: 90%;
    }
}
.remember-device-checkbox .icheckbox_square-blue,
.confirm-msa-checkbox .icheckbox_square-blue {
    margin-right: 8px;
    float: left;
}
.remember-device-checkbox #device-details-lnk,
.confirm-msa-checkbox #device-details-lnk{
    white-space: nowrap;
}
.remember-device-text {
    display: inline-block;
    white-space: normal;
    vertical-align: middle;
}

.register .register-field {
    margin-bottom: 15px;
}

.register .register-button-container {
    margin-top: 20px;
}

.reset-password .reset-password-field {
    margin-bottom: 15px;
}

.update-password .update-password-field {
    margin-bottom: 15px;
}

.update-password .update-password-button-container {
    margin-top: 20px;
}

.config-totp .config-totp-button-container {
    margin-top: 15px;
}

.totp .totp-button-container {
    margin-top: 15px;
}

.update-profile .update-profile-field {
    margin-top: 15px;
}

.update-profile .update-profile-button-container {
    margin-top: 20px;
}

.template .language-picker {
    position: relative;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 20px;
    width: 160px;
}

.template .language-picker .form-group {
    white-space: nowrap;

    /* the below keeps the label in "inline" mode even on narrow screens */
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}

.template .language-picker .language-picker-dropdown-label i {
    vertical-align: middle;
    margin-right: 7px;
    margin-left: -7px;
    color: #9ca2af;
}

.template .language-picker select.form-control {
    border-color: #afb0b3;
    background: transparent;

    /* the below keeps the <select> in "inline" mode even on narrow screens */
    display: inline-block;
    width: auto;
    vertical-align: middle;
}

.beta-program-signup-container {
  text-align: center;
}

.subtext__instructional {
    margin-top: 6px;
    color: #000000d9;
    font-size: 12px;
    display:block;
}
.device-details {
padding: 15px 20px;
border: 1px solid #D9D9D9;
margin: 15px 0;
font-size: 12px;
color: #00000073
}
.device-details--title {
    font-size: 13px;
    font-weight: bold;
    color: #000000d9;
    margin-bottom: 5px;
    display: block;
}
.details-wrapper {
    display: flex;
    gap: 50px;
}
@media (max-width: 450px) {
    .details-wrapper {
        display: flex;
        gap: 5px;
        flex-direction: column;
        align-items: flex-start;
    }
}
.details-wrapper div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px;
}
