
/* =========================================================
   JOB BEKU LOGIN - COMPACT
========================================================= */

.jobbeku-login-section {
    background: #f5f8fc;
    min-height: calc(100vh - 120px);
    padding: 25px 15px;
    display: flex;
    align-items: center;
}

.jobbeku-login-wrapper {
    max-width: 1000px;
    margin: auto;
    min-height: 500px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(11, 33, 71, 0.10);
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.login-card {
    background: #fff;
    width: 100%;
    max-width: 400px;
    padding: 28px 32px;
    margin: auto;
}


/* =========================================================
   LOGIN HEADER
========================================================= */

.login-card-header {
    text-align: center;
    margin-bottom: 18px;
}

.login-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 10px;
    border-radius: 14px;
    background: #fff7d6;
    color: #0b2147;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    border: 1px solid #ffe28a;
}

.login-card-header h2 {
    color: #0b2147;
    font-size: 23px;
    font-weight: 800;
    margin: 0 0 3px;
}

.login-card-header p {
    color: #7b8798;
    font-size: 12px;
    margin: 0;
}


/* =========================================================
   ALERT
========================================================= */

.login-alert {
    border-radius: 8px;
    border: 0;
    font-size: 12px;
    padding: 8px 11px;
    margin-bottom: 13px;
}


/* =========================================================
   FORM
========================================================= */

.login-form-group {
    margin-bottom: 12px;
}

.login-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #25344d;
    margin-bottom: 5px;
}


/* =========================================================
   INPUT
========================================================= */

.login-input {
    height: 44px;
    width: 100%;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #dce3ec;
    border-radius: 9px;
    transition: all .2s ease;
    overflow: hidden;
}

.login-input:focus-within {
    border-color: #0b2147;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(11, 33, 71, .06);
}

.login-input>i {
    width: 40px;
    min-width: 40px;
    text-align: center;
    color: #8490a1;
    font-size: 13px;
}

.login-input input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #17243b;
    font-size: 13px;
    padding: 0 4px;
}

.login-input input::placeholder {
    color: #9aa5b5;
}


/* =========================================================
   PASSWORD TOGGLE
========================================================= */

.password-toggle {
    border: 0;
    background: transparent;
    width: 40px;
    min-width: 40px;
    height: 100%;
    color: #8490a1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.password-toggle:hover {
    color: #0b2147;
}


/* =========================================================
   OPTIONS
========================================================= */

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2px 0 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: #667386;
    font-size: 11px;
    margin: 0;
}

.remember-me input {
    width: 13px;
    height: 13px;
    margin: 0;
    accent-color: #0b2147;
}

.forgot-link {
    color: #0b5ed7;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
}

.forgot-link:hover {
    color: #0b2147;
}


/* =========================================================
   LOGIN BUTTON
========================================================= */

.jobbeku-login-btn {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 9px;
    background: #0b2147;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: all .2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jobbeku-login-btn i {
    margin-right: 6px;
    color: #ffbd00;
}

.jobbeku-login-btn:hover {
    background: #123565;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(11, 33, 71, .15);
}


/* =========================================================
   SIGNUP
========================================================= */

.signup-area {
    text-align: center;
    margin-top: 14px;
    color: #7b8798;
    font-size: 11px;
}

.signup-area a {
    color: #0b2147;
    font-weight: 700;
    text-decoration: none;
    margin-left: 3px;
}

.signup-area a:hover {
    color: #d99f00;
}


/* =========================================================
   SECURITY
========================================================= */

.login-security {
    margin-top: 15px;
    padding-top: 11px;
    border-top: 1px solid #edf0f4;
    text-align: center;
    color: #9aa5b5;
    font-size: 9px;
}

.login-security i {
    color: #1c9b63;
    margin-right: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .jobbeku-login-section {
        padding: 22px 15px;
    }

    .jobbeku-login-wrapper {
        max-width: 620px;
        min-height: auto;
    }

    .login-card {
        max-width: 420px;
        padding: 26px 30px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .jobbeku-login-section {
        min-height: auto;
        padding: 15px 8px 22px;
    }

    .jobbeku-login-wrapper {
        border-radius: 14px;
    }

    .login-card {
        padding: 22px 17px;
        max-width: 100%;
    }

    .login-card-header {
        margin-bottom: 15px;
    }

    .login-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
        font-size: 19px;
        border-radius: 12px;
    }

    .login-card-header h2 {
        font-size: 20px;
    }

    .login-card-header p {
        font-size: 11px;
    }

    .login-form-group {
        margin-bottom: 10px;
    }

    .login-form-group label {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .login-input {
        height: 42px;
        border-radius: 8px;
    }

    .login-input>i {
        width: 37px;
        min-width: 37px;
        font-size: 12px;
    }

    .login-input input {
        font-size: 12px;
    }

    .password-toggle {
        width: 37px;
        min-width: 37px;
    }

    .login-options {
        margin-bottom: 12px;
    }

    .forgot-link,
    .remember-me {
        font-size: 10px;
    }

    .jobbeku-login-btn {
        height: 42px;
        font-size: 12px;
        border-radius: 8px;
    }

    .signup-area {
        margin-top: 11px;
        font-size: 10px;
    }

    .login-security {
        margin-top: 12px;
        padding-top: 9px;
        font-size: 8px;
    }
}
