.custom-footer {
    background-color: #d83b01; /* orange color */
    color: #fff;
    padding: 30px 0;
    font-size: 14px;
}

.footer-links a,
.footer-lang a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
}

.footer-links a:hover,
.footer-lang a:hover {
    text-decoration: underline;
}

.footer-lang a {
    margin-right: 0;
    margin-left: 15px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.5);
    margin: 20px 0;
}

.footer-bottom {
    font-size: 13px;
}


.banner-message {
    color: #4c4c4c;
    font-weight: 400;
    font-family: Inter;
    font-size: .938rem;
}
.banner-message:hover {
    color: #d83b01;
    
    font-weight: 400;
    font-family: Inter;
    font-size: .938rem;
}

/* TOP index page BAR */

.inner {
    max-width: 1100px;
    margin: auto;
    padding: 0 30px;
}

/* TOP BAR */
.topbar {
    background: #e6e6e6;
    padding-top: 1.46875rem;
    padding-bottom: 1.5rem;
}

.icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;

    display: flex;
    align-items: left;
    justify-content: left;
}

/* IMAGE INSIDE ICON */
.icon img {
    width: 20px;   /* adjust if needed */
    height: 20px;
    object-fit: contain;
}

/* MAIN */


/* MAIN SECTION */
.main-section {
    padding: 70px 0;
}

/* CENTER WIDTH CONTROL */
.inner {
    max-width: 1000px;   /* 🔥 FIX: content narrow */
    margin: auto;
}

/* LEFT */
.left-side {
    padding-right: 80px;
    border-right: 1px solid #dcdcdc;
}

/* RIGHT */
.right-side {
    padding-left: 80px;
   
}

/* HEADING */
h1 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
}

h1 span {
    color: #d83b01;
    font-weight: 700;
}

/* TEXT */
.desc {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* INPUT */
.input-field {
    width: 100%;
    height: 55px;   /* 🔥 FIX height */
    padding: 0 20px;
    border-radius: 30px;
    border: 1px solid #ccc;
    background: #efefef;
    margin-bottom: 15px;
    font-size: 14px;
    outline: none;
}

/* FOCUS */
.input-field:focus {
    border: 2px solid #000;
    background: #fff;
}

/* BUTTON COMMON */
.login-btn,
.create-btn {
    background: #d83b01;
    color: #fff;
    border: none;
    border-radius: 35px;
    font-size: 15px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: Left;
    gap: 10px;
    padding-left: 30px;
}

/* LOGIN BUTTON */
.login-btn {
    height: 55px;
    width: 260px;   /* 🔥 FIX: not full width */
    margin-top: 10px;
}

/* CREATE BUTTON */
.create-btn {
    padding: 14px 22px;
    margin-top: 20px;
}

.create-btn:hover{
    background: #d83b01;
    color:   #fff;

}

/* ICON */
.icon {
    width: 26px;
    height: 26px;
    background: #fff;
    color: #d83b01;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    line-height: 1;
}

/* FORGOT */
.forgot {
    margin-top: 20px;
    font-size: 14px;
}

.forgot a {
    color: #d83b01;
    text-decoration: none;
}

.forgot a:hover {
    color: #d83b01;

    text-decoration: underline;
}

/* ========================= */
/* 📱 TABLET */
/* ========================= */
@media (max-width: 992px) {

    .left-side {
        border-right: none;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .right-side {
        padding-left: 0;
    }

    .login-btn {
        width: 100%;
    }
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 576px) {

    .main-section {
        padding: 40px 15px;
    }

    h1 {
        font-size: 26px;
    }

    .desc {
        font-size: 13px;
    }

    .input-field {
        height: 50px;
    }

    .login-btn {
        width: 100%;
        height: 50px;
    }

    .create-btn {
        width: 100%;
    }
}


/* MAIN WRAPPER */
.account-wrapper {
    width: 900px;
    max-width: 95%;
    margin: 40px auto;
}

/* HEADING */
.account-title {
    font-size: 36px;
    color: #ff3c00;
    font-weight: 400;
    margin-bottom: 10px;
}

/* DIVIDER */
.account-divider {
    height: 1px;
    background: #ccc;
    margin: 15px 0 25px;
}

/* TEXT */
.account-wrapper p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* LIST */
.account-list {
    padding-left: 20px;
    margin-bottom: 25px;
}

.account-list li {
    margin: 6px 0;
    font-size: 14px;
}

/* INPUT FIELDS */
.account-input {
    width: 100%;
    padding: 16px;
    margin: 12px 0;
    border-radius: 30px;
    border: 1px solid #ccc;
    background: #eaeaea;
    font-size: 15px;
    outline: none;
}

/* INPUT FOCUS */
.account-input:focus {
    border-color: #ff3c00;
    background: #fff;
}

/* SMALL TEXT */
.account-small {
    font-size: 13px;
    color: #555;
}

/* PASSWORD TITLE */
.account-password-title {
    margin-top: 25px;
    margin-bottom: 8px;
    font-size: 20px;
}

/* BUTTON GROUP */
.account-btn-group {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

/* BUTTON BASE */
.account-btn {
    flex: 1;
    padding: 14px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

/* CONTINUE BUTTON */
.account-continue {
    background: #999;
    color: #fff;
}

/* CANCEL BUTTON */
.account-cancel {
    background: #f3d7cd;
    color: #d84315;
}

/* HOVER */
.account-btn:hover {
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .account-wrapper {
        width: 95%;
    }

    .account-btn-group {
        flex-direction: column;
    }
}