.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-725 .elementor-element.elementor-element-ebf4a46{text-align:center;font-family:"Kanit", Sans-serif;font-weight:400;color:#000000;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-77fb61e *//* ตั้งค่าพื้นฐานฟอนต์ */
.login-bar-wrapper {
    font-family: 'Prompt', sans-serif;
    width: 100%;
    max-width: 1200px; /* ปรับความกว้างสูงสุดตามต้องการ */
    margin: 20px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* กล่องหลัก (สีดำ) */
.login-bar-content {
    background: #000; /* พื้นหลังสีดำ */
    /* ใส่รูปพื้นหลังวงล้อตรงนี้ได้ เช่น: url('link-to-image.jpg'); */
    background-image: linear-gradient(90deg, #000 40%, #1a0f1f 100%); 
    background-size: cover;
    background-position: center right;
    
    border-top: 2px solid #bfa065; /* เส้นขอบบนสีทอง */
    border-bottom: 2px solid #bfa065;
    border-radius: 10px;
    
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    /* ทรงเอียง (Skew) เฉพาะ Desktop */
    transform: skewX(-15deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* ดันเนื้อหาข้างในให้กลับมาตรง ไม่เอียงตามกล่อง */
.login-bar-content > * {
    transform: skewX(15deg);
}

/* ส่วนหัวข้อ "เข้าสู่ระบบสมาชิก" */
.login-header h3 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

/* กลุ่มฟอร์ม */
.login-form-group {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

/* กล่อง Input */
.input-box {
    display: flex;
    flex-direction: column;
}

.input-box label {
    color: #ff8c6a; /* สีชมพูของ Label */
    font-size: 14px;
    margin-bottom: 3px;
    font-weight: 500;
}

.input-box input {
    background: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 10px;
    width: 160px; /* ความกว้างช่องกรอก */
    height: 35px;
    font-family: 'Prompt', sans-serif;
}

/* ปุ่มกดรวม */
.action-buttons {
    display: flex;
    gap: 10px;
}

/* ปุ่มเข้าสู่ระบบ (สีชมพู) */
.btn-login {
    background: linear-gradient(180deg, #ff8720 0%, #d41414 100%);
    color: white;
    border: none;
    padding: 0 20px;
    height: 38px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    white-space: nowrap;
    transition: 0.3s;
}

.btn-login:hover {
    filter: brightness(1.1);
}

/* ปุ่ม Line (สีเขียว) */
.btn-line {
    background: #4cc764; /* สีเขียว Line */
    background: linear-gradient(180deg, #66df75 0%, #3bb249 100%);
    color: white;
    border: none;
    padding: 0 20px;
    height: 38px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    white-space: nowrap;
    text-transform: uppercase;
}

/* --- RESPONSIVE (มือถือ) --- */
@media (max-width: 991px) {
    .login-bar-content {
        flex-direction: column;
        transform: none; /* ยกเลิกการเอียงในมือถือ */
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        gap: 20px;
    }

    .login-bar-content > * {
        transform: none; /* ยกเลิกการเอียงเนื้อหา */
    }

    .login-form-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .input-box, .input-box input {
        width: 100%; /* ขยายเต็มจอ */
    }
    
    .action-buttons {
        width: 100%;
        flex-direction: column; /* ปุ่มเรียงแนวตั้ง */
    }

    .btn-login, .btn-line {
        width: 100%;
        height: 45px;
    }
}/* End custom CSS */