/* Shared auth shell: login, register, reset-password, new-password */
.wrapperLogin {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    overflow: hidden;
}

.wrapperLogin > .bunder:first-of-type {
    position: absolute;
    top: -90px;
    right: -50px;
    width: 190px;
    height: 190px;
    background-color: #5fe29217;
    border-radius: 50%;
    z-index: 0;
}

.wrapperLogin > .bunder:first-of-type::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 150px;
    width: 100px;
    height: 100px;
    background-color: #5fe29217;
    border-radius: 50%;
    z-index: -1;
}

.wrapperLogin > .bunder:nth-of-type(2) {
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 400px;
    height: 400px;
    background-color: #5fe29217;
    border-radius: 50%;
    z-index: 0;
}

.wrapperLogin > .bunder:nth-of-type(2)::before {
    content: '';
    position: absolute;
    bottom: -225px;
    left: 150px;
    width: 500px;
    height: 500px;
    background-color: #5fe29217;
    border-radius: 50%;
    z-index: -1;
}

.wrapperLogin .isi {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    min-height: 100vh;
    padding: 1rem 1.8rem;
    z-index: 5;
}

.wrapperLogin .logo {
    text-align: center;
    margin-bottom: 2.5rem;
    user-select: none;
}

.wrapperLogin .logo img {
    width: 5rem;
    height: auto;
    margin-bottom: .75rem;
}

.wrapperLogin .logo span:first-of-type {
    display: block;
    color: var(--primer);
    font-size: 1.5rem;
    font-weight: 600;
}

.wrapperLogin .logo span:last-of-type {
    display: block;
    color: grey;
    font-size: 1rem;
    font-weight: 400;
}

.wrapperLogin .inputan .form-group {
    margin-bottom: 1.25rem;
}

.wrapperLogin .inputan .wrap-input {
    position: relative;
}

.wrapperLogin .inputan .wrap-input label,
.wrapperLogin .inputan .wrapPass > label {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: lightgrey;
    font-size: 1rem !important;
    font-weight: 400;
    margin-bottom: 0 !important;
    transition: .25s ease;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

.wrapperLogin .inputan :is(.wrap-input input:not(:placeholder-shown), .wrap-input input:focus) + label,
.wrapperLogin .inputan :is(.wrapPass input:not(:placeholder-shown), .wrapPass input:focus) + label {
    top: -1px;
    color: var(--primer);
    font-size: .8rem !important;
    padding: 0 .35rem;
    background-color: #fff;
}

.wrapperLogin .inputan input::placeholder {
    color: #fff;
}

.wrapperLogin .inputan .wrapPass {
    position: relative;
}

.wrapperLogin .inputan .wrapPass .showPass {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #cfcfcf;
    cursor: pointer;
}

.wrapperLogin .inputan input[type="text"] ~ .showPass {
    color: var(--primer);
}

.wrapperLogin .inputan .showPass i:nth-of-type(2) {
    display: none;
}

.wrapperLogin .inputan input[type="text"] ~ .showPass i:nth-of-type(1) {
    display: none;
}

.wrapperLogin .inputan input[type="text"] ~ .showPass i:nth-of-type(2) {
    display: block;
}

.wrapperLogin .inputan .validation-message {
    color: #ff6a6a;
    font-size: .7rem;
    padding-left: 1.2rem;
    margin-top: .2rem;
}

.wrapperLogin .inputan button {
    margin-bottom: 1.25rem;
}

.wrapperLogin .inputan .daftar {
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
    cursor: default;
}

.wrapperLogin .inputan .daftar span {
    color: var(--primer);
    font-weight: 600;
    cursor: pointer;
}

/* Bilingual IDN/ENG (global — works with body.selectEng from ToggleBahasa.js) */
.eng {
    display: none;
}
.selectEng .idn {
    display: none !important;
}
.selectEng .eng {
    display: block;
}
span.eng,
label .eng,
button .eng,
p .eng,
.auth-wizard-foot .eng {
    display: none;
}
.selectEng span.eng,
.selectEng label .eng,
.selectEng button .eng,
.selectEng p .eng,
.selectEng .auth-wizard-foot .eng {
    display: inline;
}
.selectEng .legal-document.eng {
    display: block;
}
.selectEng .legal-document.idn {
    display: none !important;
}
.legal-document.eng {
    display: none;
}
.selectEng .login-steps-track .eng,
.selectEng .wrapperLogin .logo .eng {
    display: block;
}
.selectEng .login-steps-track .idn,
.selectEng .wrapperLogin .logo .idn {
    display: none !important;
}
.selectEng .wrapperReset .idn {
    display: none !important;
}
.selectEng .wrapperReset .eng {
    display: block;
}
.wrapperReset .eng {
    display: none;
}
