:root {
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --input-bg: #FFFFFF;
    --input-border: #F3F4F6;
    --btn-orange-1: #FFB347;
    --btn-orange-2: #FF7B00;
    --bg-left-top: #D8F0FA;
    --bg-left-bottom: #FDFCE6;
}

body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: url('../../../../../public/images/blur.png') center/cover;
    background-size: cover;
}



/* MAIN CARD CONTAINER */
.login-container {
    display: flex;
    width: 95vw;
    max-width: 1200px;
    height: 90vh;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    gap: 10px;
    padding: 10px;
}

/* LEFT PANEL - FORM */
.left-panel {
    flex: 1;
    background: linear-gradient(180deg, var(--bg-left-top) 0%, var(--bg-left-bottom) 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    position: relative;
    background-image: 
        radial-gradient(circle at 15% 10%, rgba(255,255,255,0.8) 0%, transparent 20%),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.7) 0%, transparent 25%),
        linear-gradient(180deg, var(--bg-left-top) 0%, var(--bg-left-bottom) 100%);
}

.form-container {
    width: 100%;
    max-width: 360px;
    z-index: 2;
    margin: auto 0;
    display: flex;
    flex-direction: column;
}

.brand-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.brand-logo img { width: 70px; }

.text-center { text-align: center; }

.left-panel h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 20px 0;
}

.left-panel p.subtitle {
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 35px;
    line-height: 1.5;
}



/* PERBAIKAN STRUKTUR FORM */
.input-group {
    margin-bottom: 20px;
    width: 100%;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    text-align: left;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-main);
    box-sizing: border-box;
    outline: none;
    transition: all 0.2s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--btn-orange-1);
    box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.15);
}

.eye-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    cursor: pointer;
}

/* BUTTON */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, var(--btn-orange-1), var(--btn-orange-2));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0 6px 15px rgba(255, 123, 0, 0.25);
    transition: transform 0.2s ease;
}

.btn-submit:hover { transform: translateY(-2px); }

.btn-secondary {
    background: #EF4444;
    box-shadow: 0 6px 15px rgba(239, 68, 68, 0.25);
}

.login-link {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 20px;
}
.login-link a {
    color: var(--text-main);
    font-weight: 700;
    text-decoration: underline;
}

/* RIGHT PANEL - ILLUSTRATION */
.right-panel {
    flex: 1.2;
    background: url('../../../../../public/images/bg.jpg') center/cover;
    background-position: right;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    overflow: hidden;
}

.right-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    z-index: 1;
}

.right-content {
    margin-bottom: -50px;
    z-index: 2;
    color: white;
}

.right-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.right-content p {
    font-size: 15px;
    color: #E5E7EB;
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 25px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .login-container { 
        flex-direction: column; 
        width: 100vw; 
        height: 100vh; 
        border-radius: 0; 
        padding: 0; 
        gap: 0;
    }
    .left-panel { border-radius: 0; padding: 30px 20px; }
    .right-panel { display: none; }
}