html, body {
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    background-image: url('../xbase/ximg/xtensible-back.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom right;
    background-color: lightgrey;
    margin: 0;
    height: 100%;
}

#app-target {
    margin-top: 150px;
}

.xlogo {
    margin-top: 1em;
}

.ajaxProgress {
    width: 200px;
    height: 200px;
    position: fixed;
    top: 35%;
    left: 52%;
    margin-top: -100px;
    margin-left: -100px;
}

.modal-dialog {
    width: 80%;
}

.myModalTextarea {
    width: 100%;
    height: 621px;
    white-space: nowrap;
    overflow: -moz-scrollbars-horizontal;
    overflow: -moz-scrollbars-vertical;
    overflow-x: scroll;
}

/*---------------------------------------*/
* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* legacy base */
.login {
    
    margin: auto;
    position: relative;
    top: 0;
    left: 0;
    /* margin: 3rem 0; */
    width: 100%;
    max-width: 480px;
    height: auto;
    padding: 2rem 2.4rem;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    border: 1px solid rgba(0,0,0,0.05);
}

.login-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}
.login-logo {
    height: 50px;
    opacity: 0.9;
}
.login-title {
    margin: 0.6rem 0 0.2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1b3a57;
}




.login-form {
    /* margin: 0 0 0 2rem; */
    padding: 0.5rem;
}

.login-input {
    display: block;
    width: 100%;
    /* font-size: 1rem; */
    padding: 0.9rem 1rem;
    background: #fff;
    border: 1px solid #d7dde4;
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-input + .login-input {
    margin: 10px 0 0;
}

.login-input:focus {
    outline: none;
    border-color: #2b81a6;
    box-shadow: 0 0 0 4px rgba(43,129,166,0.1);
}

.login-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    position: relative;
}

.login-info {
    flex-grow: 1;
    color: #2b81a6;
    margin-right: 12px;
    font-weight: 600;
    visibility: hidden;
}

.forgot-link {
    color: #2b81a6;
    font-weight: 600;
    text-decoration: none;
    margin-right: 12px;
}
.forgot-link:hover, .forgot-link:focus {
    text-decoration: underline;
    color: #215f79;
}

.login-btn {
    position: relative;
    padding: 0.9rem 1.4rem;
    border: none;
    background: #2b81a6;
    color: #fff;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
}

.login-btn:hover, .login-btn:focus {
    background: #215f79;
    outline: none;
}
