/* ==========================================================================
   VS-Login Application - Core Styles (Used Classes Only)
   ========================================================================== */

/* ==========================================================================
   Layout Block
   ========================================================================== */

.oabp-absolute-center {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
}

.oabp-split-screen {
    display: flex;
    width: 100%;
    height: 100vh;
}

.oabp-left-half {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.oabp-right-half {
    min-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}


.oabp-centered-content {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Logo Block
   ========================================================================== */

.oabp-logo {
    margin: 0 0 2rem 0;
}

.oabp-app-title {
    text-shadow: -1px 1px 3px #eee, 1px -1px 3px #eee;
    font-size: 23px;
    font-weight: bold;
    color: #080808;
    margin: 0.5em 0 2.5em 0;
}

/* ==========================================================================
   Form Elements Block
   ========================================================================== */

.oabp-form-div {
    padding: 6px 12px;
}

.oabp-account-email {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.42857143;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    font-family: inherit;
    color: #555;
    padding: 6px 12px;
    outline: 0;
    background-color: #fff;
}

.oabp-account-email:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

#oabp-form-signin {
    padding: 1.3em;
    margin: 0 auto;
    background-color: #ccc;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    max-width: 33em;
}

#oabp-form-signin button {
    padding: 6px 12px 6px 2em;
    padding-right: 2em;
    color: #fff;
    background-color: #337ab7;
    border: 1px solid #2e6da4;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 4px;
    text-transform: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0;
}

#oabp-form-signin button:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
    text-transform: none;
    font-size: 14px;
}

/* ==========================================================================
   Alert Block
   ========================================================================== */

.oabp-alert {
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 7px;
}

.oabp-alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.oabp-error-containter {
    max-width: 33em;
    padding: 7px;
}

/* ==========================================================================
   Loader Block
   ========================================================================== */

.oabp-loader-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 10px;
    margin-bottom: 30px;
    background-color: white;
    z-index: 99999;
    margin-left: auto;
    margin-right: auto;
    width: 170px;
    display: none;
}

/* ==========================================================================
   Footer Block
   ========================================================================== */

.oabp-login-footer {
    margin-top: 30px;
    width: 100%;
    text-align: center;
    color: #333;
}

.oabp-login-footer a,
.oabp-login-footer span {
    color: #333;
    font-size: 10px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

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

/* ==========================================================================
   Iframe Styles
   ========================================================================== */

.oabp-marketing-iframe {
    border: none;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1099px) {
    .oabp-right-half {
        display: none;
    }
}