.elementor-564 .elementor-element.elementor-element-00ec59a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-564 .elementor-element.elementor-element-f8586c2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-564 .elementor-element.elementor-element-9677087{width:100%;max-width:100%;}}/* Start custom CSS for html, class: .elementor-element-9677087 *//* === Container utama === */
.custom-login-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 960px;
    margin: 50px auto;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', sans-serif;
}

/* === Panel kiri === */
.custom-login-left {
    background-color: #5a8dee;
    color: white;
    flex: 1;
    min-width: 250px;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.custom-login-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.custom-login-left p {
    font-size: 16px;
    margin-bottom: 25px;
}

.custom-register-btn {
    display: inline-block;
    padding: 12px 24px;
    color: #5a8dee;
    background-color: white;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    border: none;
}

.custom-register-btn:hover {
    background-color: #e2e2e2;
}

/* === Panel kanan (form login) === */
.custom-login-right {
    flex: 1;
    padding: 60px 30px;
    background-color: #fff;
}

/* Plugin form styling */
.ihc-login-form-wrap {
    max-width: 100%;
    margin: 0 auto;
}

.ihc-login-form-wrap input[type="text"],
.ihc-login-form-wrap input[type="password"] {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    background-color: #f9f9f9;
    transition: 0.3s;
}

.ihc-login-form-wrap input[type="submit"] {
    width: 100%;
    padding: 14px;
    background-color: #090d59;
    color: white;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ihc-login-form-wrap input[type="submit"]:hover {
    background-color: #446cd5;
}

/* OR separator */
.ihc-login-or {
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
    color: #888;
    position: relative;
    font-size: 15px;
}

.ihc-login-or::before,
.ihc-login-or::after {
    content: "";
    display: inline-block;
    width: 35%;
    height: 1px;
    background: #ccc;
    vertical-align: middle;
    margin: 0 10px;
}

/* Social buttons */
.ihc-login-social button,
.ihc-login-social input[type="button"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.ihc-login-social button.google { background-color: #db4437; }
.ihc-login-social button.facebook { background-color: #3b5998; }
.ihc-login-social button.linkedin { background-color: #0077b5; }

.ihc-login-form-wrap .ihc-login-bottom-links {
    text-align: center;
    margin-top: 20px;
}

.ihc-login-form-wrap .ihc-login-bottom-links a {
    color: #090d59;
    margin: 0 8px;
    font-size: 14px;
    text-decoration: none;
}

.ihc-login-form-wrap .ihc-login-bottom-links a:hover {
    text-decoration: underline;
}

/* === RESPONSIVE FIX: Mobile === */
/* === RESPONSIVE FIX: Mobile === */
@media (max-width: 780px) {
    .custom-login-container {
        flex-direction: column;
        border-radius: 12px; /* ✅ Tambahkan radius saat di HP */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        margin: 20px;
    }

    .custom-login-left,
    .custom-login-right {
        flex: 1 1 100%;
        padding: 30px 20px;
        text-align: center;
    }

    .custom-login-left h2 {
        font-size: 24px;
    }

    .custom-register-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .ihc-login-form-wrap input[type="submit"] {
        font-size: 15px;
    }
}/* End custom CSS */