* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* =========================
   LOGIN PAGE
========================= */

.login-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    background: #fff;
}


/* =========================
   LEFT / COVER
========================= */

.login-cover {
    width: 76%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-image: url("../../../images/idnextleader_new_cover.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



/* =========================
   HERO CONTENT
========================= */

.hero-content {
    position: absolute;
    top: 24%;
    left: 44%;
    color: #fff;
}

.hero-program {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.18;
    font-weight: 700;
    margin-bottom: 28px;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 8px;
}

.hero-scholarship {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 28px;
}

.hero-hashtag {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}


/* =========================
   PROGRAM BUTTON
========================= */

.program-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;
    height: 38px;

    padding: 0 20px;

    background: #fff;
    color: #ed4346;

    border-radius: 7px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 600;

    transition: 0.2s ease;
}

.program-button:hover {
    background: #f5f5f5;
    color: #d93639;
    text-decoration: none;
}


/* =========================
   CONTACT
========================= */

.contact-info {
    position: absolute;
    left: 10%;
    bottom: 7%;
    color: #fff;
}

.contact-logo {
    width: 34px;
    height: 34px;

    border-radius: 50%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;
}

.contact-logo img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.contact-title {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-details {
    display: flex;
    align-items: center;
    gap: 35px;

    font-size: 11px;
    white-space: nowrap;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
}

.contact-details .phone-number {
    text-decoration: underline;
}


/* =========================
   RIGHT / LOGIN
========================= */

.login-form-wrapper {
    width: 24%;
    min-height: 100vh;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

}

.login-box {
    width: 100%;
    max-width: 290px;
}


/* =========================
   LOGIN LOGO
========================= */

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}
.login-logo img {
    max-width: 130px;
    max-height: 55px;
    object-fit: contain;
}



.logo-telkom {
    width: 65px;
    height: auto;
    object-fit: contain;
}

.logo-idnextleader {
    width: 70px;
    height: auto;
    object-fit: contain;
}

.login-title {
    text-align: center;
    color: #ed3f43;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 35px;
}

.login-title {
    text-align: center;

    color: #ed3f43;

    font-size: 13px;
    font-weight: 500;

    margin-bottom: 35px;
}


/* =========================
   FORM
========================= */

.login-form .form-group {
    margin-bottom: 15px;
}

.login-form .form-control {
    width: 100%;
    height: 42px;

    padding: 8px 10px;

    border: none;
    border-bottom: 1px solid #cfcfcf;
    border-radius: 0;

    outline: none;

    background: transparent;

    color: #333;
    font-size: 11px;

    box-shadow: none;
}

.login-form .form-control::placeholder {
    color: #b8b8b8;
}

.login-form .form-control:focus {
    border-bottom-color: #ed4346;
}


/* =========================
   PASSWORD
========================= */

.password-wrapper {
    position: relative;
}

.password-wrapper .form-control {
    padding-right: 35px;
}

.password-toggle {
    position: absolute;

    right: 8px;
    top: 50%;

    transform: translateY(-50%);

    color: #555;

    cursor: pointer;

    font-size: 12px;
}


/* =========================
   LOGIN BUTTON
========================= */

.btn-login {
    width: 100%;
    height: 36px;

    margin-top: 12px;

    border: none;
    border-radius: 6px;

    background: #ed4346;
    color: #fff;

    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.2s ease;
}

.btn-login:hover {
    background: #d93639;
}


/* =========================
   FORGOT PASSWORD
========================= */

.login-bottom {
    text-align: center;
    margin-top: 16px;
}

.forgot-password {
    color: #ed4346;

    font-size: 12px;

    text-decoration: none;
}

.forgot-password:hover {
    color: #c92e32;
}


/* =========================
   REGISTER
========================= */

.register-text {
    text-align: center;

    margin-top: 10px;

    color: #777;

    font-size: 12px;
}

.register-text a {
    color: #ed4346;

    text-decoration: none;

    font-weight: 500;
}

.register-text a:hover {
    text-decoration: underline;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .login-cover {
        width: 65%;
    }

    .login-form-wrapper {
        width: 35%;
        padding: 30px 25px;
    }

    .hero-content {
        left: 40%;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle,
    .hero-scholarship {
        font-size: 20px;
    }
}


@media (max-width: 767px) {

    .login-page {
        display: block;
    }

    .login-cover {
        width: 100%;
        height: 520px;
        min-height: 520px;

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .hero-content {
        top: 10%;
        left: 10%;
        right: 8%;
    }

    .hero-program {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.12;
        margin-bottom: 22px;
    }

    .hero-subtitle,
    .hero-scholarship {
        font-size: 20px;
    }

    .hero-hashtag {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .contact-info {
        left: 10%;
        right: 5%;
        bottom: 6%;
    }

    .contact-details {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 18px;
        font-size: 10px;
        white-space: normal;
    }

    .login-form-wrapper {
        width: 100%;
        min-height: auto;
        padding: 55px 30px 60px;
    }

    .login-box {
        width: 100%;
        max-width: 600px;
    }
}