/* assets/css/login-style.css */
:root {
    --bg-cream: #FCF8F2;
    --primary-gold: #E5A338;
    --primary-hover: #D18F28;
    --text-dark: #231B15;
    --text-muted: #7E7369;
    --card-bg: #FFFFFF;
    --input-bg: #FAF7F2;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

/* Ambient Background Blobs */
.bg-blob-1 {
    position: absolute;
    top: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: #F8E8D0;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}

.bg-blob-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 550px;
    height: 550px;
    background: #F3DFC2;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

/* FOTO PRODUK DI POJOK KIRI BAWAH */
.food-hero-container {
    position: absolute;
    left: -140px;
    bottom: -100px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    overflow: hidden;
    border: 14px solid var(--bg-cream);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    z-index: 1;
    pointer-events: none;
}

.food-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MAIN WRAPPER */
.main-wrapper {
    max-width: 1240px;
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT (Sesuai dengan keinginan geser ke kanan) */
.left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    padding-left: 250px; /* Nilai ini bisa disesuaikan lagi */
}

.badge-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: #F8E4C3;
    color: #B8781B;
    border-radius: 50%;
    font-size: 19px;
    position: relative;
}

.badge-brand::after {
    content: '♡';
    position: absolute;
    top: -4px;
    right: -6px;
    font-size: 13px;
    color: #B8781B;
    font-weight: 700;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.15;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: var(--primary-gold);
}

.subtitle {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.quote-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.5;
    border-left: 3px solid var(--primary-gold);
    padding-left: 14px;
    margin-bottom: 4px;
    max-width: 420px;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: #F8EDDA;
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* RIGHT CONTENT - CARD LOGIN */
.right-content {
    display: flex;
    justify-content: center;
}

.login-card {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 350px;
    padding: 28px 24px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(229, 163, 56, 0.08), 0 2px 10px rgba(0, 0, 0, 0.02);
    text-align: center;
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    border: 2px solid #FFF;
}

.welcome-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.welcome-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Input Controls */
.input-group-custom {
    position: relative;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    background-color: var(--input-bg);
    border: 1px solid #EFE8DE;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.input-group-custom:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(229, 163, 56, 0.15);
    background-color: #FFF;
}

.input-icon-box {
    padding: 10px 12px;
    color: #A3968A;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.form-control-custom {
    width: 100%;
    border: none;
    background: transparent;
    padding: 10px 10px 10px 0;
    font-size: 13px;
    color: var(--text-dark);
    outline: none;
}

/* Chrome Autofill Fix */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--input-bg) inset !important;
    -webkit-text-fill-color: var(--text-dark) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.toggle-password {
    padding: 10px 12px;
    cursor: pointer;
    color: #A3968A;
    font-size: 13px;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-gold);
    color: #FFF;
    border: none;
    padding: 11px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 14px rgba(229, 163, 56, 0.25);
    margin-top: 4px;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.divider-text {
    display: flex;
    align-items: center;
    text-align: center;
    color: #C2B7AC;
    font-size: 11px;
    margin: 16px 0;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #EFE8DE;
}

.divider-text span {
    padding: 0 8px;
}

.info-footer-note {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer {
    text-align: center;
    padding: 12px;
    font-size: 12px;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}