.demo-signin-bg
{
    height: 100vh;

    background-image: url(images/Desktop.jpg);
    background-size: cover;
}

.demo-signin-column
{
    overflow: auto;

    height: 100vh;

    background-color: rgba(255, 255, 255, .5);
}

.demo-circle-logo-container
{
    margin: 20px;
    padding: 4px;

    border: solid 1px;
    border-color: rgba(255, 255, 255, .5);
    border-radius: 50%;
}

.logo-cloud{
    background: url(images/cloudLogo.png) no-repeat center;
}
.logo-goldengate{
    background: url(images/goldengate.png) no-repeat center;
    width: 61px;
    height: 50px;
    background-size: contain;
    position: absolute;
    margin-top: 47px;
    margin-left: 16px;
}

.demo-circle-logo
{
    width: 120px;
    height: 120px;

    border-radius: 50%;
    background-color: rgba(255, 255, 255, .35);
    background-size: 85%;
}

.demo-signin-appname
{

    display: block;

    padding-left: 30px;

    letter-spacing: .01em;

    color: #000;
}

.demo-appname-lg {
    font-size: 36px;
    font-weight: 300;
}

.demo-appname-sm {
    font-size: 24px;
    font-weight: 300;
}

.demo-signin-form-container
{
    position: relative;

    margin: 20px 0 0 0;

    border-left: 4px solid #0572ce;
    background-color: #fff;
}

.demo-signin-form-container .demo-signin-button
{
    font-size: 1.250rem;

    height: 3rem;

    box-shadow: 0 1px 3px rgba(0, 0, 0, .4) !important;
}

a.forgotLinkM:link
{
    margin-left: 12px;

    text-decoration: none;
}

.demo-signin-form .oj-inputpassword-input,
.demo-signin-form .oj-inputtext-input
{
    font-family: inherit;
    font-size: 17px;
    font-weight: normal;
    line-height: normal;

    box-sizing: border-box;
    width: 100%;
    margin-bottom: 4px;
    padding: 0 0;
    padding-top: 1px;
    padding-bottom: 8px;

    text-align: left;

    color: #000;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: #9b9b9b;
    border-radius: 0;
    outline: 0;
    background-color: transparent;

    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.demo-signin-form .oj-inputpassword-input:focus,
.demo-signin-form .oj-inputtext-input:focus {
    border-color: #0572ce;
    border-width: 0 0 2px 0;
}

.demo-signin-form .oj-inputtext,
.demo-signin-form .oj-inputpassword
{
    max-width: 36em;
}

.slideLeft{
    animation-name: slideLeft;
    -webkit-animation-name: slideLeft;  
    animation-duration: 1.3s; 
    -webkit-animation-duration: 1.3s;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out;     
    visibility: visible !important; 
}

@keyframes slideLeft {
    0% {
        transform: translateX(150%);
    }
    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(150%);
    }         
    100% {
        -webkit-transform: translateX(0%);
    }
}