:root {
    --primary-deep: #78C298; 
    --primary-deep-rgb: 120, 194, 152;
    --primary-light: #5FA87F;
    --color-blue: #6E9BEA;
}

* { box-sizing: border-box; }

body {
    /* Background sama dengan halaman registrasi agar konsisten */
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), 
                url('../image/background/background.jpg');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-attachment: fixed;
    font-family: 'Poppins', sans-serif; 
    display: flex; justify-content: center; align-items: center;
    min-height: 100vh; margin: 0; padding: 20px 0;
}

/* Matikan ikon mata bawaan Edge */
input::-ms-reveal, input::-ms-clear { display: none; }

.auth-card {
    display: flex; width: 950px; 
    max-width: 95%; 
    min-height: 600px; 
    height: auto;
    background: #fff; 
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden; animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* LEFT SECTION */
.auth-left {
    flex: 0 0 45%; 
    background: var(--primary-deep); /* Berubah ke Hijau Mint */
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; color: white; text-align: center; padding: 40px; position: relative; overflow: hidden;
}
.auth-left::before {
    content: ''; position: absolute; top: -50px; left: -50px; width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255, 255, 255, 0.05); pointer-events: none;
}
.auth-left img {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover; background-color: #fff;
    padding: 10px; margin-bottom: 20px; border: 3px solid #ffffff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.4); z-index: 2;
}
.auth-left h2 { font-weight: 700; font-size: 28px; margin-bottom: 10px; z-index: 2; }
.auth-left p { font-size: 15px; opacity: 0.9; z-index: 2; }

/* RIGHT SECTION */
.auth-right {
    flex: 0 0 55%; padding: 40px 50px; display: flex; flex-direction: column;
    justify-content: center; background-color: #ffffff;
}
.auth-right h3 { font-size: 26px; font-weight: 700; color: var(--primary-deep); text-align: center; margin-bottom: 5px; }
.auth-right small.subtitle { display: block; text-align: center; color: #6c757d; margin-bottom: 30px; }

.input-group-custom { position: relative; margin-top: 12px; margin-bottom: 4px; }
.input-group-custom i.icon-left { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--primary-deep); font-size: 18px; pointer-events: none; }
.input-group-custom input {
    width: 100%; padding: 14px 18px 14px 50px; border-radius: 50px; border: 1px solid #ddd;
    font-size: 15px; transition: 0.3s; background-color: #f9f9f9;
}
.input-group-custom input:focus { border-color: var(--primary-deep); background-color: #fff; box-shadow: 0 0 8px rgba(var(--primary-deep-rgb), 0.2); outline: none; }

.btn-action {
    margin-top: 20px; width: 100%; padding: 15px 0; background: var(--color-blue); color: #fff;
    font-weight: 600; font-size: 16px; border-radius: 50px; border: none; cursor: pointer;
    box-shadow: 0 5px 15px rgba(var(--primary-deep-rgb), 0.3); transition: 0.3s ease;
}
.btn-action:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(var(--primary-deep-rgb), 0.4); }

.back-link { text-align: center; margin-top: 25px; display: block; color: var(--primary-deep); font-weight: 600; text-decoration: none; transition: 0.3s; font-size: 14px; }
.back-link:hover { color: var(--primary-light); text-decoration: underline; }

/* Toggle Ikon Mata */
.toggle-password { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: #6c757d; cursor: pointer; font-size: 16px; transition: 0.3s; }
.toggle-password:hover { color: var(--primary-deep); }

/* Styling Khusus 6 Kotak OTP */
.otp-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.otp-box {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid #ddd;
    background-color: #f9f9f9;
    color: var(--primary-deep);
    transition: 0.3s;
}
.otp-box:focus {
    border-color: var(--primary-deep);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(var(--primary-deep-rgb), 0.2);
    outline: none;
}
/* Hilangkan panah naik-turun pada input number */
.otp-box::-webkit-outer-spin-button,
.otp-box::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 992px) {
    .auth-card { 
        flex-direction: column; 
        width: 90%; 
        min-height: 600px; 
        border-radius: 20px !important; 
        margin-bottom: 40px; 
        margin: auto;
    }
    .auth-left { display: none; }
    .auth-right { 
        flex: 1;
        padding: 40px 25px; 
        justify-content: center;
    }
}