body.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    /* background-color: #f5f5f5; */

    .logo {
        width: 306px;
    }

    form {
        width: 100%;
        max-width: 330px;
        padding: 15px;
        margin: 0 auto;

        .form-control {
            position: relative;
            box-sizing: border-box;
            height: auto;
            padding: 10px;
            font-size: 16px;
        }

        .form-control:focus {
            z-index: 2;
        }

        input[type="text"] {
            margin-bottom: -1px;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

        input[type="password"] {
            margin-top: -1px;
            margin-bottom: 10px;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }

        button {
            width: 100%;
        }

    }

}

/* #region BACKEND */
.backend{

    table.postsTable{
        font-size: 12px;
    }

    .modal-dialog .modal-content .modal-header{
        padding-top: 2px;
        padding-bottom: 6px;
    }

    #postModalBody{
        .split-container {
            display: flex;
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .split-left,
        .split-right {
            overflow-y: auto;
            height: 100%;
        }

        .split-left {
            flex: 1 1 35%;
            padding: 10px;

            .postContent{
                min-height: 60px;   
                resize: none;       
                overflow: hidden;   
            }

            .img-hover-wrapper{                
                .img-hover-icon {
                    position: absolute;
                    top: 4px;
                    right: 4px;
                    transition: opacity 0.2s ease-in-out;
                    border: 1px solid #000;
                }
            
            }
        }

        .split-right {
            flex: 1 1 65%;
            padding: 10px;
        }

        .split-divider {
            flex: 0 0 6px;
            width: 6px;
            min-width: 6px;
            background: #ccc;
            cursor: col-resize;
        }

        .split-divider:hover {
            background: #999;
        }
    }

}
/* #endregion */

/* #region preloader */

.lds-dual-ring,
.lds-dual-ring:after {
    box-sizing: border-box;
}

.lds-dual-ring {
    /* display: none; */
    color: #1c4c5b;
    width: 20px;
    height: 20px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 14px;
    height: 14px;
    margin: 4px;
    border-radius: 50%;
    border: 2px solid currentColor;
    border-color: currentColor transparent currentColor transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* #endregion */