/* ============================================================
   STARTUP STYLE LOGIN
   DESA JEMPARING
============================================================ */

.startup-login {
    --login-primary: #1e4e79;
    --login-primary-hover: #163f62;
    --login-deep: #0d2b40;

    --login-text: #26384a;
    --login-muted: #7b8997;

    --login-border: #e5ebf0;
    --login-background: #f6f8fb;

    position: relative;

    width: 100%;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #f3f7fb 45%,
            #edf5fa 100%
        );
}


/* ============================================================
   BACKGROUND DETAIL
============================================================ */

.startup-login-grid {
    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0.55;

    background-image:
        linear-gradient(
            rgba(30, 78, 121, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(30, 78, 121, 0.025) 1px,
            transparent 1px
        );

    background-size:
        36px 36px;
}


.startup-login-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(5px);

    pointer-events: none;
}


.startup-glow-one {
    width: 500px;
    height: 500px;

    top: -260px;
    right: -180px;

    background:
        rgba(76, 154, 205, 0.10);
}


.startup-glow-two {
    width: 360px;
    height: 360px;

    bottom: -220px;
    left: -120px;

    background:
        rgba(30, 78, 121, 0.08);
}


/* ============================================================
   MAIN WRAPPER
============================================================ */

.startup-login-wrapper {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1100px;

    min-height: 610px;

    display: grid;

    grid-template-columns:
        1.08fr 0.92fr;

    margin: 0 auto;

    overflow: hidden;

    border:
        1px solid
        rgba(30, 78, 121, 0.10);

    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 30px 80px
        rgba(21, 60, 91, 0.12);
}


/* ============================================================
   LEFT BRAND PANEL
============================================================ */

.startup-login-brand {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    padding:
        45px 48px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #102f48 0%,
            #1e4e79 55%,
            #2d739f 100%
        );
}


.startup-login-brand::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: -230px;
    top: -200px;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 50%;
}


.startup-login-brand::after {
    content: '';

    position: absolute;

    width: 260px;
    height: 260px;

    left: -150px;
    bottom: -150px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.035);
}


/* ============================================================
   BRAND HEADER
============================================================ */

.startup-brand-header {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 13px;
}


.startup-brand-logo {
    width: 51px;
    height: 51px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.10);
}


.startup-brand-logo img {
    width: 36px;
    height: 36px;

    object-fit: contain;
}


.startup-brand-header > div:last-child {
    display: flex;

    flex-direction: column;
}


.startup-brand-header strong {
    color: #ffffff;

    font-size: 0.92rem;

    font-weight: 750;
}


.startup-brand-header span {
    margin-top: 1px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 0.68rem;
}


/* ============================================================
   BRAND CONTENT
============================================================ */

.startup-brand-content {
    position: relative;

    z-index: 2;

    max-width: 520px;

    margin:
        45px 0;
}


.startup-brand-badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 20px;

    padding:
        6px 11px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 999px;

    color:
        rgba(255, 255, 255, 0.72);

    background:
        rgba(255, 255, 255, 0.07);

    font-size: 0.64rem;

    font-weight: 700;
}


.startup-brand-content h1 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            2.4rem,
            4vw,
            4rem
        );

    font-weight: 800;

    line-height: 1.07;

    letter-spacing: -0.05em;
}


.startup-brand-content h1 span {
    display: block;

    color: #a9ddff;
}


.startup-brand-content > p {
    max-width: 490px;

    margin:
        20px 0 0;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 0.87rem;

    line-height: 1.75;
}


/* ============================================================
   FEATURES
============================================================ */

.startup-feature-list {
    display: grid;

    gap: 12px;

    margin-top: 32px;
}


.startup-feature-item {
    display: flex;

    align-items: center;

    gap: 12px;
}


.startup-feature-item > span {
    width: 39px;
    height: 39px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 12px;

    color: #b8e4ff;

    background:
        rgba(255, 255, 255, 0.08);
}


.startup-feature-item > div {
    display: flex;

    flex-direction: column;
}


.startup-feature-item strong {
    color: #ffffff;

    font-size: 0.78rem;
}


.startup-feature-item small {
    margin-top: 2px;

    color:
        rgba(255, 255, 255, 0.50);

    font-size: 0.67rem;
}


/* ============================================================
   BRAND FOOTER
============================================================ */

.startup-brand-footer {
    position: relative;

    z-index: 2;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 0.68rem;
}


.startup-brand-footer span {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}


/* ============================================================
   FORM AREA
============================================================ */

.startup-login-form-area {
    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        45px;
}


.startup-form-container {
    width: 100%;

    max-width: 370px;
}


/* ============================================================
   MOBILE BRAND
============================================================ */

.startup-mobile-brand {
    display: none;

    align-items: center;

    gap: 10px;

    margin-bottom: 28px;
}


.startup-mobile-brand img {
    width: 37px;
    height: 37px;

    object-fit: contain;
}


.startup-mobile-brand span {
    color:
        var(--login-deep);

    font-size: 0.88rem;

    font-weight: 800;
}


/* ============================================================
   FORM HEADING
============================================================ */

.startup-form-heading {
    margin-bottom: 30px;
}


.startup-form-label {
    color:
        var(--login-primary);

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 0.13em;
}


.startup-form-heading h2 {
    margin:
        7px 0 8px;

    color:
        var(--login-deep);

    font-size: 2rem;

    font-weight: 800;

    letter-spacing: -0.04em;
}


.startup-form-heading p {
    margin: 0;

    color:
        var(--login-muted);

    font-size: 0.81rem;

    line-height: 1.65;
}


/* ============================================================
   ALERT
============================================================ */

.startup-login-alert {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 20px;

    padding:
        12px 13px;

    border:
        1px solid
        rgba(210, 60, 75, 0.13);

    border-radius: 13px;

    background:
        #fff7f7;
}


.startup-login-alert > span {
    width: 31px;
    height: 31px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 9px;

    color: #c44c58;

    background:
        rgba(210, 60, 75, 0.08);
}


.startup-login-alert strong {
    display: block;

    color: #a8454e;

    font-size: 0.72rem;
}


.startup-login-alert p {
    margin:
        2px 0 0;

    color: #9c6267;

    font-size: 0.68rem;

    line-height: 1.45;
}


/* ============================================================
   FORM
============================================================ */

.startup-form {
    display: grid;

    gap: 18px;
}


.startup-form-group {
    display: grid;

    gap: 8px;
}


.startup-form-group label {
    color: #405568;

    font-size: 0.75rem;

    font-weight: 700;
}


.startup-label-row {
    display: flex;

    justify-content: space-between;

    align-items: center;
}


/* ============================================================
   INPUT
============================================================ */

.startup-input {
    position: relative;
}


.startup-input input {
    width: 100%;
    height: 50px;

    padding:
        0 46px;

    outline: none;

    border:
        1px solid
        var(--login-border);

    border-radius: 13px;

    background: #fafbfd;

    color:
        var(--login-text);

    font-size: 0.80rem;

    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}


.startup-input input::placeholder {
    color: #adb7c0;
}


.startup-input input:hover {
    border-color: #cfdae3;
}


.startup-input input:focus {
    border-color:
        #639dc5;

    background:
        #ffffff;

    box-shadow:
        0 0 0 4px
        rgba(64, 139, 190, 0.09);
}


.startup-input > span {
    position: absolute;

    z-index: 2;

    top: 50%;
    left: 16px;

    transform:
        translateY(-50%);

    color: #8494a2;

    font-size: 0.80rem;

    pointer-events: none;
}


/* ============================================================
   PASSWORD BUTTON
============================================================ */

.startup-password-button {
    position: absolute;

    top: 50%;
    right: 8px;

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    transform:
        translateY(-50%);

    padding: 0;

    border: 0;

    border-radius: 9px;

    color: #8898a4;

    background: transparent;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


.startup-password-button:hover {
    color:
        var(--login-primary);

    background:
        #edf4f8;
}


/* ============================================================
   SUBMIT
============================================================ */

.startup-submit {
    width: 100%;

    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 3px;

    padding:
        0 20px;

    border: 0;

    border-radius: 13px;

    color: #ffffff;

    background:
        var(--login-primary);

    box-shadow:
        0 12px 26px
        rgba(30, 78, 121, 0.20);

    font-size: 0.80rem;

    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}


.startup-submit:hover {
    transform:
        translateY(-2px);

    background:
        var(--login-primary-hover);

    box-shadow:
        0 16px 30px
        rgba(30, 78, 121, 0.25);
}


.startup-submit i {
    font-size: 0.70rem;

    transition:
        transform 0.2s ease;
}


.startup-submit:hover i {
    transform:
        translateX(3px);
}


/* ============================================================
   FORM FOOTER
============================================================ */

.startup-form-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 27px;

    padding-top: 20px;

    border-top:
        1px solid
        #edf0f3;
}


.startup-form-footer a,
.startup-form-footer span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    font-size: 0.65rem;
}


.startup-form-footer a {
    color:
        var(--login-primary);

    font-weight: 700;
}


.startup-form-footer span {
    color: #a0abb4;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .startup-login {
        padding:
            60px 0;
    }


    .startup-login-wrapper {
        max-width: 520px;

        min-height: auto;

        grid-template-columns: 1fr;
    }


    .startup-login-brand {
        display: none;
    }


    .startup-login-form-area {
        padding:
            45px 40px;
    }


    .startup-mobile-brand {
        display: flex;
    }


    .startup-form-container {
        max-width: 100%;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 576px) {

    .startup-login {
        padding:
            45px 13px;
    }


    .startup-login .container {
        padding: 0;
    }


    .startup-login-wrapper {
        border-radius: 23px;
    }


    .startup-login-form-area {
        padding:
            31px 24px;
    }


    .startup-form-heading {
        margin-bottom: 25px;
    }


    .startup-form-heading h2 {
        font-size: 1.7rem;
    }


    .startup-form-footer {
        align-items: flex-start;

        flex-direction: column;
    }

}