

/*for check...*/

body {
    background-color: #f2f2f2;
}

.background-img {
    background-image: url('/img/BACK_IMG.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
}

.login-box {
    margin: 0 auto;
    background-color: white;
    border-radius: 17px;
}

.card {
    border-radius: 10px;
}

.modal.left .modal-dialog {
    position: fixed;
    left: 0;
    margin: auto;
    width: 320px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.right .modal-body {
    padding: 15px 15px 80px;
}

.modal.right.fade .modal-dialog {
    left: -320px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 16.66667%;
    background-color: #f8f9fa;
    padding: 20px;
}

.content {
    margin-left: 16.66667%;
    padding: 20px;
}

.custom-border {
    border-top: white 1px solid;
    border-bottom: white 1px solid;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

@media (max-width: 770px) {
    .content {
        margin-left: 0;
        padding: 0;
    }
}