/* IN Coffee - Login Page (shares color variables with landing.css) */

body.ic-login-page {
    margin: 0;
    min-height: 100vh;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--ic-black, #121011);
}

.ic-login-wrap {
    min-height: 100vh;
    display: flex;
}

/* ---------- Left visual panel ---------- */
.ic-login-visual {
    flex: 1.15;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 60px;
    background-image: url('../../gambar/gambar4.jpg');
    background-size: cover;
    background-position: center;
}
.ic-login-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(200deg, rgba(18,16,17,.4) 0%, rgba(18,16,17,.92) 85%),
        linear-gradient(to top, rgba(18,16,17,.95) 0%, rgba(18,16,17,.15) 55%);
}
.ic-login-visual > * { position: relative; z-index: 2; }

.ic-login-brand { display: flex; align-items: center; gap: 12px; }
.ic-login-brand img { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--ic-orange, #f7941d); }
.ic-login-brand span { color: #fff; font-weight: 700; font-size: 22px; letter-spacing: 1px; }
.ic-login-brand span b { color: var(--ic-orange, #f7941d); }

.ic-login-quote span.eyebrow {
    display: inline-block;
    color: var(--ic-orange, #f7941d);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 14px;
}
.ic-login-quote h1 {
    color: #fff;
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 16px;
}
.ic-login-quote h1 span { color: var(--ic-orange, #f7941d); }
.ic-login-quote p { color: #cfc4b8; max-width: 420px; }

.ic-login-back {
    color: #cfc4b8;
    font-size: 14px;
    font-weight: 600;
}
.ic-login-back:hover { color: var(--ic-orange, #f7941d); }

/* ---------- Right form panel ---------- */
.ic-login-form-side {
    width: 460px;
    max-width: 100%;
    background: var(--ic-black-soft, #1c1815);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.ic-login-card { width: 100%; max-width: 340px; }
.ic-login-card .mobile-brand {
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.ic-login-card .mobile-brand img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--ic-orange, #f7941d); }
.ic-login-card .mobile-brand span { color: #fff; font-weight: 700; font-size: 19px; }
.ic-login-card .mobile-brand span b { color: var(--ic-orange, #f7941d); }

.ic-login-card h2 { color: #fff; font-weight: 800; font-size: 1.8rem; margin-bottom: 6px; }
.ic-login-card .sub { color: #a99f92; margin-bottom: 30px; font-size: 14px; }

.ic-login-card label {
    color: #cfc4b8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 6px;
}
.ic-login-card .form-control {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(247,148,29,.2);
    color: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    height: auto;
}
.ic-login-card .form-control::placeholder { color: #6f675e; }
.ic-login-card .form-control:focus {
    background: rgba(255,255,255,.06);
    border-color: var(--ic-orange, #f7941d);
    box-shadow: 0 0 0 3px rgba(247,148,29,.15);
    color: #fff;
}
.ic-login-card .form-group { margin-bottom: 20px; }

.ic-login-card .btn-ic-submit {
    width: 100%;
    background: var(--ic-orange, #f7941d);
    border: 2px solid var(--ic-orange, #f7941d);
    color: var(--ic-black, #121011) !important;
    font-weight: 700;
    border-radius: 10px;
    padding: 12px;
    letter-spacing: .3px;
    box-shadow: 0 10px 25px rgba(247,148,29,.3);
    transition: all .25s ease;
}
.ic-login-card .btn-ic-submit:hover { background: transparent; color: var(--ic-orange, #f7941d) !important; }

.ic-login-alert {
    background: rgba(224,62,45,.12);
    border: 1px solid rgba(224,62,45,.4);
    color: #ff9d92;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 14px;
    position: relative;
}
.ic-login-alert .close {
    color: #ff9d92;
    opacity: .8;
    text-shadow: none;
}

.ic-login-footer {
    margin-top: 34px;
    text-align: center;
    color: #6f675e;
    font-size: 12px;
}
.ic-login-footer a { color: var(--ic-orange, #f7941d); font-weight: 600; }

@media (max-width: 991px) {
    .ic-login-visual { display: none; }
    .ic-login-form-side { width: 100%; min-height: 100vh; }
    .ic-login-card .mobile-brand { display: flex; }
}
