* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    background: #f6f3f1;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* OUTER CARD */
.outer-box {
    background: #6c4f41;
    padding: 22px;
    border-radius: 22px;
    display: flex;
    gap: 22px;
    max-width: 640px;
}

/* LEFT INFO */
.outer-info {
    width: 230px;
    text-align: center;
}

.brand-title {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.brand-desc {
    font-size: 14px;
    color: #f1e9e5;
    line-height: 1.8;
}

/* FORM BOX */
.form-box {
    width: 300px;
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    position: relative;
}

/* BACK BUTTON */
.back-top {
    text-align: left;
    margin-top: -6px;
    margin-bottom: 10px;
}
.forgot-link {
    font-size: 12px;
    color: #6c4f41;
    text-decoration: none;        /* HILANGKAN GARIS */
}

.forgot-link:hover,
.forgot-link:active,
.forgot-link:focus {
    text-decoration: none;        /* PASTI TIDAK MUNCUL */
}


/* TITLE */
.title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #6c4f41;
    margin-bottom: 14px;

    margin-top: -6px;      /* NAIKKAN JUDUL */

}

/* INPUT */
.form-box input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid #e0d6d0;
    font-size: 13px;
}

.form-box input:focus {
    outline: none;
    border-color: #6c4f41;
}

/* PANAH BACK BESAR */
.back-arrow {
    font-size: 22px;      /* BESARKAN PANAH */
    font-weight: 700;
    margin-right: 6px;
    position: relative;
    top: 2px;             /* sejajarkan dengan teks */
}

/* BUTTON */
.btn-submit {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 14px;
    background: #6c4f41;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* ERROR */
.error-msg {
    background: #fdecea;
    color: #c0392b;
    font-size: 12px;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 10px;
}

/* SUCCESS */
.success-msg {
    background: #eafaf1;
    color: #1e8449;
    font-size: 12px;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .container {
        padding: 20px;
    }

    /* ubah jadi vertikal */
    .outer-box {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        width: 100%;
        transform: none; /* hapus scale biar tidak kecil */
    }

    /* bagian atas (judul / info) */
    .outer-info {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .brand-title {
        font-size: 28px;
    }

    .brand-desc {
        font-size: 13px;
    }

    /* form di bawah */
    .form-box {
        width: 100%;
        max-width: 100%;
    }
}