/* Minification failed. Returning unminified contents.
(48,23): run-time error CSS1046: Expect comma, found '0'
(48,27): run-time error CSS1046: Expect comma, found '/'
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI emoji", "Content";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    color: #5f6368;
    background: #f5f5f5;
}

a {
    text-decoration: none;
}

img {
    cursor: pointer;
}

.aouh-flex {
    display: flex;
    align-items: center;
    width: 100%;
}

    .aouh-flex > div {
        width: 100%;
    }


.aouh-login {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aouh-login-box {
    height: auto;
    background-color: #fff;
    overflow: auto;
    box-shadow: rgb(0 0 0 / 8%) 0px 4px 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
    word-wrap: break-word;
}

.text-muted {
    color: #6c757d !important;
}

.login-right-panel {
    width: 300px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-left-panel {
    width: 400px;
    border-right: 1px solid #ddd;
    padding: 32px
}

.login-outer-textbox {
    border: 2px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

.login-textbox {
    border: none;
    outline: none;
    padding: 8px;
    width: 100%;
}

.aouh-control-label {
    font-weight: 600;
    padding: 3px 0;
}

.aouh-text-danger {
    color: red;
}

.aouh-textbox-spacer {
    width: 32px !important;
}

.field-validation-error:before {
    content: "ⓧ";
    margin-right: 8px;
}


/* The Modal (background) */
.aouh-overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.2); /* Black w/ opacity */
}

.aouh-center-container {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.aouh-loading {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background: #fff;
    margin: 0 auto;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

