/* CONTAINER SIDEBAR */
.ojs-sidebar-login {
    background: #efefef;
    padding: 10px 14px;
    font-family: "Segoe UI", Arial, sans-serif;
    max-width: 320px;
    border-bottom: 10px solid #323439;
}

/* JUDUL LOGIN */
.ojs-sidebar-login h3 {
    color: #ffffff;
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
    background: 10px #323439;
    padding: 10px 14px;
}

.ojs-sidebar-login hr {
    border: none;
    border-top: 2px solid #ddd;
    margin-bottom: 2px;
}

/* LABEL */
.ojs-sidebar-login label {
    display: block;
    margin-top: 4px;
    margin-bottom: 2px;
    font-size: 12px;
    color: #333;
}

.ojs-sidebar-login label span {
    color: red;
}

/* INPUT FIELD */
.ojs-sidebar-login input[type="text"],
.ojs-sidebar-login input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 3px solid #8f8f8f;
    background: #fff;
    font-size: 10px;
    box-sizing: border-box;
}

/* FORGOT PASSWORD */
.ojs-sidebar-login .forgot {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    line-height: 1.2;
}

.ojs-sidebar-login .forgot:hover {
    text-decoration: underline;
}

/* REMEMBER ME */
.ojs-sidebar-login .remember {
    margin-top: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.ojs-sidebar-login input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

/* AREA TOMBOL */
.ojs-sidebar-login .actions {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 17px;
}

/* BUTTON LOGIN */
.ojs-sidebar-login .btn-login {
    padding: 4px 18px;
    border: 3px solid #9a9a9a;
    background: #fff;
    font-size: 16px;
    font-weight: bold;
    color: #5a1c1c;
    cursor: pointer;
}

.ojs-sidebar-login .btn-login:hover {
    background: #f3f3f3;
}

/* LINK REGISTER */
.ojs-sidebar-login .register {
    font-size: 16px;
    text-decoration: none;
    color: #333;
    padding: 2px 10px;
}

.ojs-sidebar-login .register:hover {
    text-decoration: underline;
}

/* ===== SIDEBAR MENU UTAMA ===== */
.ojs-sidebar-menu {
    background: #efefef;
    padding: 10px 14px;
    font-family: "Segoe UI", Arial, sans-serif;
    max-width: 320px;
    border-bottom: 10px solid #323439;
    border-top: 10px solid #323439;
    margin-top: 15px;
}

/* Judul menu */
.ojs-sidebar-menu h3 {
    color: #ffffff;
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
    background: 10px #323439;
    padding: 10px 14px;
}

/* Garis bawah judul */
.ojs-sidebar-menu hr {
    border: none;
    border-top: 2px solid #ddd;
    margin-bottom: 5px;
}

/* List menu */
.ojs-sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Item menu */
.ojs-sidebar-menu li {
    border-bottom: 1px solid #cfcfcf;
}

/* Link menu */
.ojs-sidebar-menu a {
    display: block;
    padding: 2px 10px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

/* Hover menu */
.ojs-sidebar-menu a:hover {
    background: #e3e3e3;
    padding-left: 15px;
    transition: 0.2s;
}

/* ===== SIDEBAR TEMPLATE / GAMBAR ===== */
.ojs-sidebar-template {
    background: #efefef;
    padding: 10px 14px;
    font-family: "Segoe UI", Arial, sans-serif;
    max-width: 320px;
    border-bottom: 10px solid #323439;
    margin-top: 15px;
}

/* Judul */
.ojs-sidebar-template h3 {
     color: #ffffff;
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
    background: 10px #323439;
    padding: 10px 14px;
}

/* garis bawah judul */
.ojs-sidebar-template hr {
    border: none;
    border-top: 2px solid #ddd;
    margin-bottom: 10px;
}

/* preview gambar */
.ojs-template-img {
    width: 100%;
    border: 1px solid #cfcfcf;
    background: #fff;
    padding: 4px;
    box-sizing: border-box;
}

/* tombol download */
.ojs-template-download {
    display: block;
    text-align: center;
    margin-top: 8px;
    padding: 6px;
    font-size: 14px;
    text-decoration: none;
    background: #fff;
    border: 2px solid #9a9a9a;
    color: #323439;
    font-weight: bold;
}

.ojs-template-download:hover {
    background: #e3e3e3;
}