/* ============================================================
 * login_style.css
 * Styles extracted from inline style attributes and <style> block
 * in login.jsp to comply with Content-Security-Policy
 * (style-src 'self'). UI appearance must remain identical.
 * ============================================================ */

/* Was: <style> .row {max-width: 100%!important;} </style> in head */
.row {
    max-width: 100% !important;
}

/* Was: <div class="row" style="margin-top: 20px;"> */
.login-row-top-spacing {
    margin-top: 20px;
}

/* Was: <input id="passwordENC" style="display:none"> */
#passwordENC {
    display: none !important;
}

/* Was: <div class="tx_wrap" style="font-size: 14px"> */
.tx_wrap-fs-14 {
    font-size: 14px;
}

/* Was: <span id="captchImg" style="display:inline-block; width:100px; ..."> */
#captchImg {
    display: inline-block;
    width: 100px;
    height: 35px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 35px;
    font-size: 20px;
    font-weight: bold;
    color: #323296;
    letter-spacing: 5px;
    font-family: Arial;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Was: <a href="javascript:;" style="font-size: 14px;"> "Try new code" */
.captcha-reload-link {
    font-size: 14px;
}

/* Was: <input type="button" id="toggle" style="margin: 10px 5px 0px 0;"> Login button */
.login-btn-spacing {
    margin: 10px 5px 0px 0;
}
