/* ------------------------------
   GLOBAL
------------------------------ */
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    color: #1f1f1f;
    text-align: center;
}

/* ------------------------------
   HEADER
------------------------------ */
.header {
    width: 100%;
    background: #1c3a5a;
    padding: 30px 0 60px;
}

.brand-badge {
    display: inline-block;
    background: #d0894d;
    padding: 10px 25px;
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.header-title {
    font-size: 20px;
    font-weight: 700;
    color: #d0894d;
    margin-top: 25px;
}

/* ------------------------------
   CONTENT WRAPPER
------------------------------ */
.container {
    max-width: 700px;
    margin: -30px auto 0;
    padding: 20px;
}

.sub-text {
    margin-bottom: 40px;
    font-size: 12px;
    color: #444;
}

/* ------------------------------
   INPUT FIELD
------------------------------ */
.input-field {
    width: 100%;
    padding: 18px 22px;
    border-radius: 30px;
    border: none;
    background: #eaecee;
    font-size: 14px;
    margin-bottom: 20px;
    outline: none;
    transition: 0.15s;
}

.input-field:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px #d0894d;
}

.input-field::placeholder {
    color: #d0894d;
    opacity: 1;
}

/* ------------------------------
   BUTTON
------------------------------ */
.btn-submit {
    background: #d0894d;
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.2s;
}

.btn-submit:hover {
    background: #b3713d;
}

/* ------------------------------
   LOGO
------------------------------ */
.logo-box {
    margin-top: 80px;
}

.logo-box img {
    height: 55px;
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
    margin-top: 30px;
    font-size: 12px;
    color: #777;
}

/* ------------------------------
   INSTAGRAM ICON 
------------------------------ */
.icon-ig {
    width: 40px;
    height: 40px;
    background-color: #d0894d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

.circle-icon {
    width: 30px;
    height: 30px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #fff;
    background: #d0894d;    
}

/* ------------------------------
   BOTTOM BAR (Logo kiri - IG kanan)
------------------------------ */
.bottom-bar {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.bottom-left img {
    height: 55px;
}

.bottom-right i {
    font-size: 24px;
    color: #d0894d;
    cursor: pointer;
    transition: 0.2s;
}

/* ------------------------------
   RESPONSIVE 
------------------------------ */
@media (max-width: 480px) {
    .bottom-left img {
        height: 45px;
    }

    .bottom-right i {
        font-size: 20px;
    }
    
    input-field {
    width: 80%;      /* atau 90%, sesuaikan */
    padding: 14px 18px;  /* kecilkan padding */
    font-size: 13px;
    }
}

