a {
    color: #7e7e7e;
}
a, .btn-link {
    text-decoration: none;
}
/* ================= LOGIN FORM ================= */
.login-form-bx {
    background-image: url(../images/about-jisu.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.login-form-bx::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* dark overlay */
    z-index: 0;
}
/* Form control border */
.login-form-bx .form-control {
    border: 1px solid #d3d3d3;
}
/* ================= LOGO ================= */
.login-form-bx .login-logo {
    margin-bottom: 25px;
    text-align: center;
}
.login-form-bx .logo-icon {
    width: 90px;
}
/* ================= INNER CONTENT ================= */
.login-form-bx .inner-content {
    padding: 60px 40px;
    color: #ffffff;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}
.login-form-bx .inner-content h2,
.login-form-bx .inner-content h4 {
    color: #ffffff;
}
.login-form-bx .inner-content ol {
    padding-left: 18px;
    margin-bottom: 20px;
}
.login-form-bx .inner-content ol li {
    margin-bottom: 10px;
}
/* ================= SUBTITLE ================= */
.subtitle {
    font-size: 16px;
    color: #ffcc00;
    line-height: 1.6;
}
.subtitle em {
    font-style: italic;
    color: #555;
}
/* ================= INFO BOX ================= */
.info-box {
    color: #183a77;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-left: 4px solid #ffcc00;
    border-radius: 6px;
}
/* ================= ALERT ================= */
.alert-message {
    background-color: rgba(255, 0, 0, 0.15);
    border-left: 4px solid #ff4d4d;
    padding: 15px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}
/* ================= SOCIAL ICONS ================= */
.login-form-bx .social-icons li {
    display: inline-block;
    margin-right: 10px;
}
.login-form-bx .social-icons li a {
    display: block;
    background-color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 4px;
    color: #183a77;
}
/* ================= BOX SKEW ================= */
.login-form-bx .box-skew,
.login-form-bx .box-skew1 {
    height: 100vh;
    min-height: 100vh;
    position: relative;
}
.login-form-bx .box-skew1 {
    z-index: 1;
    background-color: var(--white);
}
.login-form-bx .box-skew1:after {
    content: "";
    height: 100%;
    position: absolute;
    width: 120%;
    left: -30px;
    top: 0;
    /* background-image: url(../images/about-jisu.jpeg); */
    background-size: cover;
    background-position: right center;
    z-index: -1;
    transform: skew(-5deg);
    opacity: 0.9;
}
/* ================= AUTH BOX ================= */
.login-form-bx .box-skew .authincation-content {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    position: absolute;
    z-index: 2;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    padding: 50px;
    width: 500px;
    background-color: #fff;
    border-radius: 10px;
}
/* Inner shadow */
.login-form-bx .box-skew .authincation-content:after {
    content: "";
    height: 100%;
    width: 200%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    box-shadow: 0 12px 23px rgba(62, 73, 84, 0.08);
}
/* ================= RESPONSIVE ================= */
@media only screen and (max-width: 991px) {
    .login-form-bx .inner-content {
        padding-left: 0;
    }
    .login-form-bx .box-skew .authincation-content {
        width: auto;
    }
}
@media only screen and (max-width: 767px) {
    .login-form-bx .box-skew .authincation-content {
        position: relative;
        transform: none;
        top: auto;
        right: auto;
        margin: auto;
        display: block;
        width: 100%;
    }
    .login-form-bx .box-skew .authincation-content:after {
        width: 100%;
    }
    .login-form-bx .box-skew,
    .login-form-bx .box-skew1 {
        height: auto;
        min-height: auto;
        padding: 50px;
    }
}
@media only screen and (max-width: 575px) {
    .login-form-bx .box-skew,
    .login-form-bx .box-skew1,
    .login-form-bx .box-skew .authincation-content {
        padding: 30px;
    }
    .info-box, .alert-message {
        font-size: 14px;
    }
}
