
body {

/*    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;*/
    height: 100vh;
    background-image: none;
    background-repeat: no-repeat;
    overflow-y: hidden;
}

a {
    text-decoration: none;
    color: #444444;
}

.login-back-panel {
    display: flex;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    right: 0;
    left: 0;
    margin: auto;
    height: 400px;
    border: 1px solid gray;
    background-color: #e07729 /*rgba(236, 48, 20, 0.9);*/
    /*    background-image: url('../files/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;*/
}

@media (max-width: 768px) {
    .login-back-panel {
        display: none !important;
    }
}

.white-panel {
    background-color: rgba(255,255, 255, 1);
    height: 500px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
    /*    right: calc(50% - 50px);*/
    /*    transition: .3s ease-in-out;*/
    z-index: 0;
    box-shadow: 0 0 15px 9px #00000096;
    padding: 15px 15px;
}

.login-logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.login-logo {
    width: 170px;
    height: 130px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.login-show,
.forgot-show {
    width: 330px;
    z-index: 1;
    display: none;
    opacity: 0;
    transition: 0.3s ease-in-out;
    text-align: left;
    padding: 15px;
}

.show-log-panel {
    display: block;
    opacity: 0.9;
}

.login-txt {
    font-size: 16px !important;
    font-weight: 500;
}

.login-input-container {
    padding: 14px 16px;
    margin-top: 16px;
    border: 1px solid #ccd0d4;
    border-radius: 3px;
    box-shadow: none;
    -webkit-box-shadow: none;
    position: relative;
}

    .login-input-container:focus-within {
        border: 1px solid #9fa2a5;
    }

.login-input {
    margin-left: 8px;
    width: 100%;
    outline: none;
    background: none;
    border: none;
/*    font-family: inherit;*/
    font-size: 14px;
    color: #1c1a1a;
}

@media (max-width: 768px) {
    .login-input {
        margin-left: 4px;
        max-width: 180px;
        outline: none;
        background: none;
        border: none;
        font-family: inherit;
        font-size: 12px;
        color: #1c1a1a;
    }
}

.login-user-errorMessage {
    position: absolute;
    font-size: 10px;
    color: #e23f33;
    bottom: 1px;
    left: 40px;
    margin: 0;
    padding: 0;
}

.login-input-invalid {
    border: 1px solid #e23f33 !important;
}

.login-container {
    flex: 1 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-content {
    padding: 10px;
    font-size: 14px;
    color: #00acac !important;
}

.btn.btn-success {
     color: #fff; 
     background: #00acac; 
     border-color: #00acac; 
}

    .btn.btn-success:hover,
    .btn.btn-success:focus,
    .btn.btn-success:active {
        background: #1D8888 !important;
        border-color: #1D8888 !important;
    }

.btn {
    font-weight: 300;
    border-radius: 3px;
}

.btn-block {
    display: block;
    width: 100%;
}

.mt-20 {
    margin-top: 20px !important;
}

.btn-forgot {
    color: #fff;
    background: #49b6d6;
    border-color: #49b6d6;
}

.btn.btn-forgot:hover,
.btn.btn-forgot:focus,
.btn.btn-forgot:active {
    color: #fff;
    background: #3a92ab;
    border-color: #3a92ab;
}