@import url("../plugins/font/font.css");

body {
    margin: 0;
    color: #2d353c;
    /* dark-color: #dee2e6; */
    background-color: #dee2e6;
    /* dark-background-color: #161a1d; */
    font-family: "Open Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Login News Feed */
.login-with-news-feed {
    min-height: 100vh;
}

.login-with-news-feed .news-feed {
    position: fixed;
    top: 0;
    left: 0;
    right: 500px;
    bottom: 0;
    overflow: hidden;
    transform: translateZ(0);
}

@media (max-width: 991.98px) {
    .login-with-news-feed .news-feed {
        right: 400px;
    }
}

@media (max-width: 767.98px) {
    .login-with-news-feed .news-feed {
        display: none;
    }
}

.login-with-news-feed .news-feed::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.login-with-news-feed .news-feed .news-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../img/login-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.login-with-news-feed .news-feed .news-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 60px 60px 45px;
    color: rgba(255, 255, 255, 0.85);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #000 100%);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.25px;
    z-index: 20;
}

@media (max-width: 991.98px) {
    .login-with-news-feed .news-feed .news-caption {
        padding: 45px 45px 30px;
        font-size: 16px;
    }
}

.login-with-news-feed .news-feed .news-caption .caption-title {
    color: #fff;
    font-size: 36px;
    font-weight: 300;
}

@media (max-width: 991.98px) {
    .login-with-news-feed .news-feed .news-caption .caption-title {
        font-size: 28px;
    }
}
/* Login News Feed */

/* Login Container */
.login-with-news-feed .login-container {
    width: 500px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    /* dark-background: #2d353c; */
    margin-left: auto;
    padding: 60px;
}

@media (max-width: 991.98px) {
    .login-with-news-feed .login-container {
        width: 400px;
        padding: 45px;
    }
}

@media (max-width: 767.98px) {
    .login-with-news-feed .login-container {
        width: auto;
        padding: 30px;
    }
}
/* Login Container */

/* Login Header */
.login-with-news-feed .login-header {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.login-with-news-feed .login-header .brand {
    flex: 1;
    color: #20252a;
    /* dark-color: #ffffff; */
    padding: 0;
    font-size: 28px;
    font-weight: 300;
}

@media (max-width: 767.98px) {
    .login-with-news-feed .login-header .brand {
        font-size: 22px;
    }
}

.login-with-news-feed .login-header .brand small {
    display: block;
    color: rgba(32, 37, 42, 0.5);
    /* dark-color: rgba(255, 255, 255, 0.5); */
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 767.98px) {
    .login-with-news-feed .login-header .brand small {
        font-size: 13px;
    }
}

.login-with-news-feed .login-header .icon {
    color: rgba(32, 37, 42, 0.25);
    /* dark-color: rgba(255, 255, 255, 0.5); */
    line-height: 0;
}

.login-with-news-feed .login-header .icon i {
    font-size: 64px;
}

@media (max-width: 767.98px) {
    .login-with-news-feed .login-header .icon i {
        font-size: 52px;
    }
}
/* Login Header */

/* Login Content */
.login-content {
    font-size: 13px;
}

.login-content input {
    height: 45px !important;
    color: #20252a;
    /* dark-color: #ffffff; */
    background-color: #ffffff;
    /* dark-background-color: #2d353c; */
    border: 1px solid #ced4da;
    /* dark-border: 1px solid #495057; */
    font-size: 13px;
    font-weight: 600;
}

.login-content label {
    display: flex;
    align-items: center;
    color: rgba(108, 117, 125, 1);
}

.login-content .login-message {
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.login-content .form-button {
    margin-bottom: 120px;
}

.login-content .form-button button {
    width: 100%;
    height: 45px;
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.login-content hr {
    margin: 0.9375rem 0;
    color: #adb5bd;
    border: 0;
    border-top: 1px solid;
    background-color: rgba(108, 117, 125, 1);
    opacity: 0.4;
}

.login-content .copyright {
    margin-bottom: 0;
    color: rgba(108, 117, 125, 1);
    text-align: center;
}
/* Login Content */