body {
    background: #22262e;
    padding: 0;
    font-family: Lato, Calibri, Arial, sans-serif;
}

.logo {
    display: block;
    margin: 110px auto -110px;
}

label[for=logonIdentifier],
label[for=password],
label[for=code],
.intro,
.divider {
    display: none;
}

#api-wrapper {
    position: relative;
    width: 300px;
    margin: 0 auto;
    height: 194px;
}

.create {
    font-size: 0;
}

.links {
    display: flex;
    justify-content: space-between;
}

.links a,
.links .link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    display: block;
    text-decoration: none;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
}

.links a:not(:disabled),
.links .link:not(:disabled) {
    cursor: pointer;
}

.links a:hover:not(:disabled),
.links .link:hover:not(:disabled) {
    text-decoration: underline;
    color: #fff;
}

.localAccount {
    position: relative;
    width: 300px;
    margin: 200px auto;
    transition: border-color ease-in-out 0s, box-shadow ease-in-out 0s;
}

.localAccount input {
    box-sizing: border-box;
    display: block;
    width: 100%;
    margin-bottom: 15px;
    line-height: 1.3333333;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 46px;
    padding: 10px 0 10px 45.5px;
    font-size: 17px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.localAccount button[id="next"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    margin-bottom: 15px;
    background-color: #29AF8E;
    border: 1px solid #29AF8E;
    border-radius: 4px;
    color: #fff;
    font-weight: normal;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    height: 46px;
}

.localAccount button[id="next"]:hover {
    opacity: .8;
}

.localAccount button[id="next"][disabled] {
    opacity: .7 !important;
    cursor: not-allowed;
}

.localAccount button[id="next"] .loader {
    -webkit-animation: spinAround 500ms infinite linear;
    animation: spinAround 500ms infinite linear;
    border: 2px solid #dbdbdb;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    display: none;
    height: 1em;
    width: 1em;
}

.localAccount button[id="next"].loading span {
    display: none;
}

.localAccount button[id="next"].loading .loader {
    display: block;
}

.error.pageLevel p[role=alert] {
    position: absolute;
    top: -45px;
    color: red;
}

#createAccount {
    display: none;
}

#tb-registration {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    display: block;
    text-decoration: none;
}

#tb-registration:hover {
    text-decoration: underline;
    color: #fff;
}

#attributeVerification #continue:disabled {
    display: none;
}

.error.pageLevel .alert {
    position: absolute;
    top: -45px;
    color: red;
}

.form-group {
    position: relative;
}

.form-group .form-group-addon {
    position: absolute;
    text-align: center;
    line-height: 46px;
    width: 46px;
    height: 46px;
    top: -1px;
    left: 0px;
    color: #8cc152;
}

.well {
    display: block;
    padding: 10px 16px;
    font-size: 16px;
    line-height: 1.3333333;
    margin-bottom: 15px;
    background-color: #1e755f;
    border-radius: 4px;
    color: #fff;
    font-weight: normal;
}

.well a {
    font-size: 15px;
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.well a:hover {
    text-decoration: underline;
    color: #fff;
}

.smart-captcha {
    display: none;
}

.SmartCaptcha-Shield.SmartCaptcha-Shield_position_bottom {
    bottom: 16px !important;
}

@keyframes spinAround {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}