/* Font Faces */
@font-face {
    font-family: 'Bebas';
    src: url('/desktop/fonts/bebas.ttf') format('truetype');
}

@font-face {
    font-family: 'Digital-7';
    src: url('/desktop/fonts/digital-7.ttf') format('truetype');
}

.slick-dotted.slick-slider{
    margin-bottom: 0 !important;
}

/* Custom DATATABLE */
.dt-layout-table{
    display: block !important;
}
.dt-paging {
    text-align: center;
    margin-top: 16px;
    font-family: Arial, sans-serif;
}

.dt-paging-button {
    display: inline-block;
    padding: 6px 10px;
    margin: 0 2px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.dt-paging-button:hover:not(.disabled):not(.current) {
    background-color: #eee;
    border-color: #888;
}

.dt-paging-button.current {
    font-weight: bold;
    background-color: #ddd;
    border-color: #000;
    cursor: default;
}

.dt-paging-button.disabled {
    background-color: #f9f9f9;
    color: #aaa;
    border-color: #ccc;
    cursor: not-allowed;
}
.dt-layout-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    font-family: Arial, sans-serif;
    color: #fff;
}

.dt-layout-cell {
    display: flex;
    align-items: center;
}

.dt-length,
.dt-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dt-input {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* Custom Notif Detail */
.body-qris {
    justify-content: center;
    align-items: center;
    /* height: 55vh; */
    display: flex;
}
.container-qris {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px #0000001a;
    width: 500px;
}
.header-qris {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-qris h2 {
    margin: 0;
    font-size: 18px;
    color: #000;
}
.status {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.status.menunggu {
    background: #fc0;
    color: #000;
}
.status.disetujui {
    background: #4caf50;
    color: #fff;
}
.status.ditolak {
    background: #f44336;
    color: #fff;
}
.message {
    margin-top: 15px;
    background: #eef2ff;
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
}
.message p {
    color: #000;
}
.qr-code {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

/* Custom History */
.table-container {
    display: table;
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    font-size: 14px;
    background-color: #fdfdfd;
    border: 1px solid #ccc;
}

.table-header, .table-row {
    display: table-row;
    background-color: #f7f7f7;
}

.table-header {
    font-weight: bold;
    background-color: #333;
    color: white;
}

.table-row:nth-child(even) {
    background-color: #fafafa;
}

.table-row > div,
.table-header > div {
    display: table-cell;
    padding: 10px 15px;
    border: 1px solid #ddd;
    vertical-align: middle;
    text-align: left;
}

.date-filter-container {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Label untuk input tanggal */
.date-filter-container label {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-right: 8px;
}

/* Styling untuk input tanggal */
.date-filter-container input[type="date"] {
    padding: 10px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 150px;
}

/* Placeholder dan calendar icon styling */
.date-filter-container input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: white;
    border-radius: 3px;
    cursor: pointer;
    filter: invert(1);
    padding: 2px;
}

/* Hover effect untuk input tanggal */
.date-filter-container input[type="date"]:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Focus effect untuk input tanggal */
.date-filter-container input[type="date"]:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* Styling untuk tombol filter */
.date-filter-container .filter-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
}

/* Hover effect untuk tombol filter */
.date-filter-container .filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
    background: linear-gradient(45deg, #ff5252, #d63031);
}

/* Active effect untuk tombol filter */
.date-filter-container .filter-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(238, 90, 36, 0.3);
}

/* Wrapper untuk grup tanggal */
.date-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

/* Responsive design */
@media (max-width: 768px) {
    .date-filter-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .date-group {
        justify-content: space-between;
    }
    
    .date-filter-container input[type="date"] {
        min-width: auto;
        flex: 1;
    }
}

/* Dark mode variant */
.dark-theme .date-filter-container {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.dark-theme .date-filter-container input[type="date"] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Animasi loading untuk tombol filter */
.filter-btn.loading {
    position: relative;
    color: transparent;
}

.filter-btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom CONTACT FORM */

.contact-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.contact-menu {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.contact-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Staggered animation delays */
.contact-menu.active .contact-item:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}
.contact-menu.active .contact-item:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}
.contact-menu.active .contact-item:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}
.contact-menu.active .contact-item:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}


.contact-menu a {
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: left;
    margin-top: 10px;
}

.contact-menu .label {
    background: white;
    padding: 8px 14px;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
    font-size: 14px;
    color: #333;
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #3b82f6;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
}

.icon.whatsapp {
    background-image: url("https://cdn-icons-png.flaticon.com/512/733/733585.png");
}

.icon.telegram {
    background-image: url("https://cdn-icons-png.flaticon.com/512/2111/2111646.png");
}

.icon.website {
    background-image: url("https://cdn-icons-png.flaticon.com/512/1006/1006771.png");
}

.icon.facebook {
    background-image: url("https://cdn-icons-png.flaticon.com/512/733/733547.png");
}

.toggle-button {
    background-color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.toggle-button:hover {
    transform: rotate(90deg);
}

/* CUSTOM GAME LIST */

.filter-container {
    padding: 10px 20px;
    background-color: #111;
    text-align: center;
}

.filter-container input {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #222;
    color: #fff;
    border: none;
    border-bottom: 2px solid #444;
    outline: none;
    border-radius: 5px 5px 0 0;
}

/* Register */
.register-page-reminder{
    color: #fff;
}

/* Index */
.withdraw-container {
    /* background: linear-gradient(to bottom, #fff8c6, #d4a017); */
    border-radius: 20px;
    padding: 5px;
    width: 350px;
    /* box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); */
    height: 500px;
    border: 3px solid #70AA65;
}

.withdraw-container .header {
    background: #1E790C;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 22px;
    font-weight: bold;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.withdraw-list {
    /* background: #000; */
    padding: 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    /* height: 513px; */
}

.withdraw-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 25px;
}

.withdraw-item span.currency {
    margin: 0 10px;
}

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
.top-icons .livechat-icon,
.top-icons .flag-icon {
	height: 1.5vw;
	max-height: 26px;
	width: auto;
}

/* User Info */
.user-info {
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
    /* right: 70px; */
}

.user-info span {
    color: #ffffff;
    font-family: 'Bebas', sans-serif;
    font-size: 26px;
}

/* Level Icon */
.level-icon {
    width: 40px;
    height: 40px;
    margin: 0 -12px;
    transition: transform 0.2s ease;
}

.level-icon:hover {
    transform: scale(1.1);
}

/* Username */
.username {
    color: #FFD700;
    font-weight: bold;
    font-family: 'Bebas', sans-serif;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Balance Separator */
.balance-separator {
    width: 1px;
    height: 20px;
    background-color: #666;
    margin: 0 5px;
}

/* Balance Info */
.balance-info {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.balance-text {
    color: #ffffff;
    font-family: 'Bebas', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.saldo-wrapper {
    position: relative;
    display: inline-block;
}

.saldo-button {
    height: 40px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transform: translate(-4px, 1px);
    width: 134px;
}

.saldo-button img {
    height: 25px;
    width: auto;
}

.saldo-nominal {
    /* position: absolute;
    right: -14px; */
    top: 0;
    color: #ffffff;
    font-family: 'Bebas', sans-serif;
    font-size: 14px;
    z-index: 3;
}

.balance-background {
    position: absolute;
    right: -59px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #b90808;
    height: 45px;
    width: 190px;
    border-radius: 3px;
    z-index: 1;
}

.refresh-icon {
    /* position: absolute; */
    /* right: 105px; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    color: #ffffff;
    font-size: 21px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 3;
}

/* .refresh-icon:hover {
    transform: translateY(-50%) rotate(180deg);
} */

/* Action Buttons */
.user-actions {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}
.login-section{
    margin-top: 10px;
}
.action-button-memo img,
.action-button-profile img,
.action-button-transaction img,
.action-button-bonus img,
.action-button-logout img {
    height: 60px;
    width: 120px;
    transition: transform 0.2s ease;
}

.action-button-memo img:hover,
.action-button-profile img:hover,
.action-button-transaction img:hover,
.action-button-bonus img:hover,
.action-button-logout img:hover {
    transform: scale(1.05);
}

/* NoScript Message */
.noscript-message {
    background-color: #ff4444;
    color: white;
    text-align: center;
    padding: 10px;
    margin: 0;
}


/* Media Queries untuk Sidenav */
@media screen and (max-width: 1600px) {
    header {
        padding: 1% 15%;
    }

    .logo img {
        height: 42px;
        width: auto;
        min-height: 25px;
        max-height: 42px;
    }

    .header-right {
        gap: 0.4vw;
    }

    .top-icons {
        gap: 0.6vw;
    }

    .top-icons .livechat-icon,
    .top-icons .flag-icon {
        height: 1.3vw;
        max-height: 22px;
    }
    .sidenav {
		right: 0px;
		top: 150px;
	}
    /* User Info */
.user-info {
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
    right: 70px;
}

.user-info span {
    font-size: 20px;
    top: 12%;
    right: 1%;
}

/* Level Icon */
.level-icon {
    width: 40px;
    height: 40px;
    margin: 0 -12px;
    transition: transform 0.2s ease;
}

.level-icon:hover {
    transform: scale(1.1);
}

/* Username */
.username {
    color: #FFD700;
    font-weight: bold;
    font-family: 'Bebas', sans-serif;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Balance Separator */
.balance-separator {
    width: 1px;
    height: 20px;
    background-color: #666;
    margin: 0 5px;
}

/* Balance Info */
.balance-info {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.balance-text {
    color: #ffffff;
    font-family: 'Bebas', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.saldo-wrapper {
    position: relative;
    display: inline-block;
}

.saldo-button {
    height: 40px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transform: translate(-4px, 1px);
    width: 134px;
}

.saldo-button img {
    height: 25px;
    width: auto;
}

.saldo-nominal {
    /* position: absolute;
    right: -14px; */
    top: 0;
    color: #ffffff;
    font-family: 'Bebas', sans-serif;
    font-size: 14px;
    z-index: 3;
}

.balance-background {
    right: -30px;
    height: 38px;
    width: 160px;
}

.refresh-icon {
    position: absolute;
    right: 105px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 21px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 3;
}

.refresh-icon:hover {
    transform: translateY(-50%) rotate(180deg);
}

/* Action Buttons */
.user-actions {
    gap: 1px;
    margin-top: 0px;
}

.action-button-memo img,
.action-button-profile img,
.action-button-transaction img,
.action-button-bonus img,
.action-button-logout img {
    height: 60px;
    width: 120px;
    transition: transform 0.2s ease;
}

.action-button-memo img:hover,
.action-button-profile img:hover,
.action-button-transaction img:hover,
.action-button-bonus img:hover,
.action-button-logout img:hover {
    transform: scale(1.05);
}

/* NoScript Message */
.noscript-message {
    background-color: #ff4444;
    color: white;
    text-align: center;
    padding: 10px;
    margin: 0;
}
}

@media screen and (max-width: 1366px) {
    header {
        padding: 1% 12%;
    }

    .logo img {
        height: 38px;
        width: auto;
        min-height: 22px;
        max-height: 38px;
    }

    .header-right {
        gap: 0.35vw;
    }

    .top-icons {
        gap: 0.5vw;
    }

    .top-icons .livechat-icon,
    .top-icons .flag-icon {
        height: 1.2vw;
        max-height: 20px;
    }
    .sidenav {
        right: -5px;
        top: 130px;
    }
}

@media screen and (max-width: 1024px) {
    header {
        padding: 1% 10%;
    }

    .logo img {
        height: 34px;
        width: auto;
        min-height: 20px;
        max-height: 34px;
    }

    .header-right {
        gap: 0.3vw;
    }

    .top-icons {
        gap: 0.4vw;
    }

    .top-icons .livechat-icon,
    .top-icons .flag-icon {
        height: 1.1vw;
        max-height: 18px;
    }
    .sidenav {
        right: -10px;
        top: 110px;
    }
}

/* Body & HTML */
/* body {
	background-image: url('/desktop/assets/BACKGROUND-LOW.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	font-family: Arial, sans-serif;
	min-width: 1024px;
} */

html {
	scroll-behavior: smooth;
}

.noscript-message {
    background-color: #ff4444;
    color: white;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
}

/* Layout Styles */
.site-wrapper {
	width: 100%;
	max-width: 100%;
	margin: 0;
	transform: none;
	transform-origin: initial;
	position: relative;
}

.page-wrapper {
	position: relative;
	/* min-height: 100vh; */
	display: flex;
	flex-direction: column;
}

.footer-spacing {
    margin-bottom: 260px;
}

/* POP UP CSS */
.popup-overlay {
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.popup-container img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: #ff0000;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #cc0000;
    transform: scale(1.1);
}

/* Pagegame CSS */
.main-content {
    min-height: 100vh;
    padding: 0px;
    /* background: url('/desktop/assets/BACKGROUND-LOW.webp') no-repeat center center fixed; */
    /* background-size: cover; */
    position: relative;
    margin-top: 20px;
}

.content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
}

.slot-wrapper,
.livecasino-wrapper,
.sports-wrapper,
.arcade-wrapper,
.sabungayam-wrapper {
    width: 100%;
    margin: 0 auto;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
}

.provider-item {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.provider-item:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.provider-item img {
    width: 100%;
    height: auto;
    display: block;
}

.header-icon {
    width: 30px;
    height: 30px;
}

.page-header h1 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

/* Provider Banner Styling */
.provider-detail-header {
    width: 100%;
    margin-bottom: 30px;
    max-width: 800px; /* Membatasi lebar maksimum */
    margin-left: auto;
    margin-right: auto;
}

.provider-banner {
    width: 100%;
    height: auto;
    max-height: 200px; /* Membatasi tinggi maksimum */
    display: block;
    border-radius: 10px;
    object-fit: contain; /* Memastikan gambar tidak terdistorsi */
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

/* Contact CSS */
/* .contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
}

.contact-form-wrapper {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.contact-content {
    padding: 30px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.contact-item {
    background: rgba(255, 183, 25, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 183, 25, 0.3);
}

.contact-item i {
    font-size: 40px;
    color: #ffb719;
    margin-bottom: 15px;
}

.contact-item h3 {
    color: #ffb719;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
} */

/* Footer CSS */
/* Base Styles */
.footer-wrapper {
    /* transform: scale(0.85); */
    /* transform-origin: top center; */
    /* margin-bottom: -5%; */
    /* margin-top: 5%; */
}
.download-link {
    display: block;
    width: 100%;
}

.download-image {
    width: 70%;
    margin: 0 auto;
    display: block;
}
/* Khusus untuk index.php before login */
.index-footer .download-image {
    width: 70%;
    margin: 0 auto;
    display: block;
    transform: translateX(8%);
}
/* Index Footer Styles */
.index-footer .download-banner {
    width: 165%;
    margin: 0px -67px;
    position: relative;
    left: -328px;
    top: -15px;
}

.index-footer .footer-section {
    background-color: #000000;
    width: 181%;
    padding: 13px 0;
    margin-top: -15px;
    margin-left: -370px;
    position: relative;
    height: 411px;
}

.index-footer .footer-content {
    position: relative;
    width: 100%;
    max-width: 1586px;  /* Disesuaikan dari 1920px */
    height: 100%;
    padding: 18px 220px;  /* Disesuaikan dari 400px */
    margin: 0 auto;      /* Menambahkan margin auto */
}

/* Red Lines untuk index page */
.index-footer .service-red-line,
.index-footer .payment-bottom-line,
.index-footer .description-bottom-line {
    position: relative;
    width: 100%;  /* Disesuaikan dari 120% */
    height: 8px;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: auto;
    background: linear-gradient(358deg, 
        rgba(255,0,0,0) 0%, 
        rgba(255,0,0,1) 20%, 
        rgba(255,0,0,1) 80%, 
        rgba(255,0,0,0) 100%
    );
}

/* Red Lines untuk pages */
.pages-footer .service-red-line,
.pages-footer .payment-bottom-line,
.pages-footer .description-bottom-line {
    position: relative;
    max-width: 60%;
    height: 5px;
    margin: 15px auto;
    background: linear-gradient(358deg, 
        rgba(255,0,0,0) 0%, 
        #70AA65 20%, 
        #70AA65 80%, 
        rgba(255,0,0,0) 100%
    );
}

.index-footer .payment-system,
.index-footer .site-description {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px;
}

/* Pages Footer Styles */
.pages-footer .download-banner {
    width: 100%;
    margin: 0 auto;
    position: relative;
    left: 0;
    padding: 0;
}

/* Pages Footer Styles */
.pages-footer .footer-section {
    width: 70%;
    margin: 0px auto;
    position: relative;
    left: 0;
    background-color: #000000;
    height: auto;
    padding: 13px 0;
}


.pages-footer .payment-system {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    position: relative;
}

.pages-footer .site-description {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    position: relative;
    padding: 30px 50px;
}

.pages-footer .gameprovider-categories {
    width: 100%;
    margin: 40px auto;
    position: relative;
    padding: 30px 50px;
    /* top: 300px; */
}

.pages-footer .footer-content {
    position: relative;
    width: 100%;
    max-width: 1586px;  /* Disesuaikan dari 1200px */
    height: 100%;
    padding: 20px 250px;  /* Disesuaikan padding */
    margin: 0 auto;
}


.pages-footer .payment-system,
.pages-footer .site-description {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    /* top: 340px; */
}
.pages-footer .footer-item {
    position: absolute;
    display: block;
    transform: translateX(350px);
}

.pages-footer .footer-item img {
    position: absolute;
    display: block;
}
/* Footer Images Positioning untuk pages */
.pages-footer .img-18plus { width: 45px; top: -7px; left: 503px; }
.pages-footer .img-bantuan { width: 500px; top: 210px; left: -21px; }
.pages-footer .img-bartele { width: 300px; top: 276px; left: 268px; }
.pages-footer .img-barwa { width: 300px; top: 277px; left: -75px; }
.pages-footer .img-browser { width: 136px; top: 6px; left: 766px; }
.pages-footer .img-pelayanan { width: 291px; top: -29px; left: -588px; }
.pages-footer .img-produk { width: 239px; top: 96px; left: -589px; }
.pages-footer .img-pusatbantuan { width: 89px; top: 56px; left: 648px; }
.pages-footer .img-respon { width: 126px; bottom: -68px; left: 483px; }
.pages-footer .img-responsible { width: 89px; top: 1px; left: 600px; }
.pages-footer .img-sertifikasi { width: 500px; bottom: 4px; left: 395px; height: 15px; }
.pages-footer .img-syarat { width: 130px; bottom: -69px; left: 770px; }
.pages-footer .img-livekasino { width: 300px; top: 98px; left: 0px; }
.pages-footer .img-olahraga { width: 300px; top: 96px; left: 615px; }
.pages-footer .img-slot { width: 300px; bottom: -165px; left: -310px; }
.pages-footer .img-togel { width: 300px; bottom: -165px; left: 308px; }
.pages-footer .img-tentang { width: 77px; top: 55px; left: 375px; }
.pages-footer .img-logopwc { width: 126px; bottom: -39px; left: 365px; }
.pages-footer .img-waktudp { width: 310px; top: -34px; left: -240px; }
.pages-footer .img-waktuwd { width: 310px; top: -34px; left: 45px; }

/* Common Footer Elements */
.footer-item {
    position: absolute;
    display: block;
}

.footer-item img {
    position: absolute;
    display: block;
}

/* Footer Images Positioning */
.img-18plus { width: 45px; top: -2px; left: 1219px; }
.img-bantuan { width: 500px; top: 210px; left: 329px; }
.img-bartele { width: 300px; top: 276px; left: 618px; }
.img-barwa { width: 300px; top: 277px; left: 275px; }
.img-browser { width: 136px; top: 6px; right: -1422px; }
.img-pelayanan {width: 300px;top: -17px;right: -28px;}
.img-produk {width: 242px;top: 99px;right: 30px;}
.img-pusatbantuan { width: 89px; top: 65px; left: 1168px; }
.img-respon { width: 126px; bottom: -77px; left: 999px; }
.img-responsible { width: 139px; top: 1px; right: -1213px; }
.img-sertifikasi { width: 550px; bottom: 4px; right: -1421px; height: 15px; }
.img-syarat { width: 130px; bottom: -77px; left: 1293px; }
.img-livekasino { width: 350px; top: 100px; left: 707px; }
.img-olahraga { width: 350px; top: 99px; right: -1416px; }
.img-slot { width: 350px; bottom: -177px; left: -8px; }
.img-togel { width: 350px; bottom: -178px; right: -700px; }
.img-tentang { width: 77px; top: 65px; right: -950px; }
.img-logopwc { width: 176px; bottom: -60px; left: 829px; }
.img-waktudp { width: 360px; top: -34px; right: -468px; }
.img-waktuwd { width: 360px; top: -34px; right: -821px; }

/* Payment System */
.payment-system {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
    z-index: 1;
}

.payment-title {
    font-family: 'Bebas', sans-serif;
    font-size: 32px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 0;
}

.payment-icon {
    width: 180px;
    height: 100px;
}

.payment-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Site Description */
.site-description {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 50px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Game Provider Categories */
.gameprovider-categories {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 50px;
    width: 100%;
    position: relative;
}

/* Copyright */
.copyright {
    text-align: center;
    padding: 20px 0;
    color: #fff;
}
@media screen and (max-width: 1600px) {
    .footer-wrapper {
        transform: scale(0.95);
        margin-bottom: -2%;
    }

    /* Index Footer Styles */
    .index-footer .download-banner {
        width: 145%;
        left: -280px;
        top: -12px;
    }

    .index-footer .footer-section {
        width: 68vw;
        margin-left: -36px;
        height: 400px;
        margin-top: -10px;
    }

    .index-footer .footer-content {
        max-width: 1400px;
        padding: 15px 180px;
    }

    /* Pages Footer Styles */
    .pages-footer .footer-section {
        width: 100%;
    }

    .pages-footer .footer-content {
        max-width: 1400px;
        padding: 15px 180px;
    }

    .pages-footer .gameprovider-categories {
        padding: 25px 40px;
        top: 280px;
    }

    /* Footer Images Positioning untuk pages */
    .pages-footer .img-18plus { width: 40px; top: -5px; left: 483px; }
    .pages-footer .img-bantuan { width: 450px; top: 190px; left: -15px; }
    .pages-footer .img-bartele { width: 260px; top: 256px; left: 248px; }
    .pages-footer .img-barwa { width: 260px; top: 257px; left: -55px; }
    .pages-footer .img-browser { width: 116px; top: 8px; left: 726px; }
    .pages-footer .img-pelayanan { width: 271px; top: -22px; left: -520px; }
    .pages-footer .img-produk { width: 219px; top: 86px; left: -520px; }
    .pages-footer .img-pusatbantuan { width: 80px; top: 46px; left: 618px; }
    .pages-footer .img-respon { width: 110px; bottom: -58px; left: 463px; }
    .pages-footer .img-responsible { width: 80px; top: 3px; left: 570px; }
    .pages-footer .img-sertifikasi { width: 450px; bottom: 6px; left: 365px; }
    .pages-footer .img-syarat { width: 110px; bottom: -59px; left: 740px; }
    .pages-footer .img-livekasino { width: 260px; top: 88px; left: 10px; }
    .pages-footer .img-olahraga { width: 260px; top: 86px; left: 585px; }
    .pages-footer .img-slot { width: 260px; bottom: -145px; left: -280px; }
    .pages-footer .img-togel { width: 260px; bottom: -145px; left: 278px; }
    .pages-footer .img-tentang { width: 70px; top: 45px; left: 355px; }
    .pages-footer .img-logopwc { width: 110px; bottom: -29px; left: 345px; }
    .pages-footer .img-waktudp { width: 280px; top: -24px; left: -210px; }
    .pages-footer .img-waktuwd { width: 280px; top: -24px; left: 75px; }

    /* Payment System */
    .payment-title {
        font-size: 28px;
    }

    .payment-icons {
        max-width: 700px;
        gap: 15px;
    }

    .payment-icon {
        width: 160px;
        height: 90px;
    }

    /* Site Description */
    .site-description {
        padding: 25px 40px;
    }

    /* Game Provider Categories */
    .gameprovider-categories {
        padding: 25px 40px;
    }
    /* Footer Images Positioning */
.img-18plus { width: 40px; top: -6px; left: 554px; }
.img-bantuan { width: 441px; top: 144px; left: 115px; }
.img-bartele { width: 300px; top: 230px; left: 356px; }
.img-barwa { width: 300px; top: 230px; left: 40px; }
.img-browser { width: 100px; top: 2px; right: -860px; }
.img-pelayanan {width: 170px; top: -10px; right: -4px;}
.img-produk {width: 135px; top: 80px; right: 30px;}
.img-pusatbantuan { width: 64px; top: 46px; left: 696px; }
.img-respon { width: 120px; bottom: -56px; left: 558px; }
.img-responsible { width: 105px; top: 2px; right: -712px; }
.img-sertifikasi { width: 380px; bottom: 0px; right: -855px; height: 14px; }
.img-syarat { width: 90px; bottom: -54px; left: 769px; }
.img-livekasino { width: 205px; top: 78px; left: 408px; }
.img-olahraga { width: 205px; top: 78px; right: -827px; }
.img-slot { width: 205px; bottom: -122px; left: -23px; }
.img-togel { width: 205px; bottom: -122px; right: -398px; }
.img-tentang { width: 77px; top: 44px; right: -542px; }
.img-logopwc { width: 120px; bottom: -40px; left: 442px; }
.img-waktudp { width: 240px; top: -22px; right: -250px; }
.img-waktuwd { width: 240px; top: -22px; right: -468px; }
}

/* Promosi CSS */

.promosi-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.promosi-grid {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: 100%;
}

.promo-section {
    margin-bottom: -4px; /* Menghilangkan gap antar section */
}

.promosi-item {
    position: relative;
    cursor: pointer;
}

.promosi-item img {
    width: 160%;
    height: auto;
    display: block;
    vertical-align: bottom;
    margin-left: -175px;
}

.button-container {
    background: #1a1a1a;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #333;
    position: relative; /* Untuk posisi tombol close */
    width: 160%;
    margin-left: -175px;
}

/* Tambahkan style untuk tombol close di button container */
.close-button-container {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
}

.button-container, .promotion-info {
    position: relative; /* Untuk posisi absolute tombol close */
}

.close-button-container:hover {
    color: #fff;
}

.promotion-label h2 {
    color: #fff;
    margin: 5px 0;
    font-family: 'Neue', sans-serif;
    font-size: 16px;
}

.click-for-more-info-button {
    background: #70AA65;
    border: none;
    padding: 5px 20px;
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Poppins-Italic', sans-serif;
    margin: 5px 0;
}

.promotion-info {
    background: #1a1a1a;
    padding: 38px;
    color: #fff;
    border-bottom: 1px solid #333;
    width: 160%;
    margin-left: -175px;
}

/* Menghilangkan margin default dari paragraf dan list */
.promotion-info p, 
.promotion-info ol {
    margin: 5px 0;
}

.promotion-info li {
    margin: 5px 0;
    line-height: 1.4;
}

/* Memo */
/* Container styling */
.memo__container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    border: 1px solid #FFD700;
}

.standard-form-content a{
    text-decoration: none;
}

.nav-bar-links{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.tab-content{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
}
.notification-list .notification-item {
    display: flex;
    gap: 15px;
    padding: 20px 10px;
    background-color: transparent;
    border: 1px solid #333;
    cursor: pointer;
    width: 100%;
}
.notification-list .notification-item[data-seen="false"] {
    background-color: #333;
}
.notification-list .notification-item .notification-image {
    position: relative;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #7ebaed;
    border-radius: 10px;
}
.notification-list .notification-item .notification-image[data-message-subcategory="Deposit"][data-transaction-status="PEN"],
.notification-list .notification-item .notification-image[data-message-subcategory="Deposit"][data-transaction-status="NEW"],
.notification-list .notification-item .notification-image[data-message-subcategory="Withdrawal"][data-transaction-status="PEN"],
.notification-list .notification-item .notification-image[data-message-subcategory="Withdrawal"][data-transaction-status="NEW"],
.notification-list .notification-item .notification-image[data-message-subcategory="LogResetPasswordForgotPassword"],
.notification-list .notification-item .notification-image[data-message-subcategory="LogResetPasswordChangePassword"],
.notification-list .notification-item .notification-image[data-message-subcategory="LogResetPasswordPassword"],
.notification-list .notification-item .notification-image[data-message-subcategory="LogResetPasswordAPKPassword"],
.notification-list .notification-item .notification-image[data-message-subcategory="LogResetPasswordChangeMobilePassword"],
.notification-list .notification-item .notification-image[data-message-subcategory="HasActiveCoupon"] {
    background-color: #f5f164;
}
.notification-list .notification-item .notification-image[data-message-subcategory="Deposit"][data-transaction-status="REJ"],
.notification-list .notification-item .notification-image[data-message-subcategory="Deposit"][data-transaction-status="FAIL"],
.notification-list .notification-item .notification-image[data-message-subcategory="Withdrawal"][data-transaction-status="REJ"],
.notification-list .notification-item .notification-image[data-message-subcategory="Withdrawal"][data-transaction-status="FAIL"],
.notification-list .notification-item .notification-image[data-message-category="Announcement"],
.notification-list .notification-item .notification-image[data-message-category="Notification"] {
    background-color: #e5949e;
}
.notification-list .notification-item .notification-image[data-message-subcategory="Deposit"][data-transaction-status="APP"],
.notification-list .notification-item .notification-image[data-message-subcategory="Withdrawal"][data-transaction-status="APP"],
.notification-list .notification-item .notification-image[data-message-subcategory="ClaimBonus"],
.notification-list .notification-item .notification-image[data-message-subcategory="ClaimCommission"],
.notification-list .notification-item .notification-image[data-message-subcategory="ClaimCashback"],
.notification-list .notification-item .notification-image[data-message-subcategory="ClaimCombinePromo"],
.notification-list .notification-item .notification-image[data-message-subcategory="NewBonus"],
.notification-list .notification-item .notification-image[data-message-subcategory="NewCommission"],
.notification-list .notification-item .notification-image[data-message-subcategory="NewCashback"],
.notification-list .notification-item .notification-image[data-message-subcategory="NewCombinePromo"],
.notification-list .notification-item .notification-image[data-message-subcategory="ClaimPreBonusOnGoing"],
.notification-list .notification-item .notification-image[data-message-subcategory="ClaimPreBonusComplete"],
.notification-list .notification-item .notification-image[data-message-subcategory="ClaimedCoupon"],
.notification-list .notification-item .notification-image[data-message-subcategory="WlbCoupon"],
.notification-list .notification-item .notification-image[data-message-subcategory="RankedUpLoyaltyLevel"],
.notification-list .notification-item .notification-image[data-message-subcategory="LuckyDraw"],
.notification-list .notification-item .notification-image[data-message-subcategory="RedemptionStoreCoupon"] {
    background-color: #76cb79;
}
.notification-list .notification-item .notification-image img {
    width: 50px;
    height: 50px;
}
.notification-list .notification-item[data-seen="false"] .notification-image:before {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    background: #fc1818;
    border: 1px solid #fff;
    border-radius: 50%;
}
.notification-list .notification-item .notification-content {
    width: calc(100% - 90px);
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}
.notification-list .notification-item .notification-content .notification-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #fff;
}
.notification-list .notification-item .notification-content .notification-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.notification-list .notification-item .notification-content p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}
.notification-popup-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #000;
    color: #fff;
}
.notification-popup-body .notification-popup-title {
    padding: 0 10px;
    font-size: 24px;
}
.notification-popup-body .notification-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}
.notification-popup-body .notification-tabs .notification-tab-item {
    flex-grow: 1;
    border-radius: 0;
    background: none;
    border-bottom: 2px solid #555;
    color: #fff;
}
.notification-popup-body .notification-tabs .notification-tab-item[data-active="true"] {
    border-bottom: 2px solid #fff;
    background: none;
}
.notification-popup-body .notification-tabs .notification-tab-item[data-count] span {
    position: relative;
}
.notification-popup-body .notification-tabs .notification-tab-item[data-count] span:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(15px, 50%);
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
}
.notification-popup-body .notification-tabs .notification-tab-item[data-count="0"] span:after {
    display: none;
}
.notification-popup-body > .notification-content {
    flex-grow: 1;
    height: 80vh;
    overflow: auto;
}
.notification-popup-body .notification-list {
    margin-top: 0;
    gap: 0;
}

/* Tab styling */
.component-tabs {
    background: #b90808;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    border: none;
    display: flex;
    gap: 10px;
}

.nav-link {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #b90808 !important;
    border-radius: 5px !important;
    padding: 10px 20px !important;
    font-weight: bold;
    margin: 0 5px;
}

.nav-link.active {
    background: #b90808 !important;
    color: #fff !important;
}

/* Table styling */
.table-responsive {
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 15px;
}

.table {
    width: 100%;
    margin-bottom: 0;
}

.table th {
    background: #b90808;
    color: #fff;
    border: 1px solid #800000;
    text-align: center;
    padding: 12px;
}

.table td {
    color: #fff;
    border: 1px solid #FFD700;
    padding: 12px;
}

/* Button styling */
.btn-custom {
    background: #b90808;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px 0;
}

.btn-custom:hover {
    background: #800000;
    transform: scale(1.05);
}

/* Modal styling */
.modal-content {
    background: #000;
    border: 2px solid #FFD700;
    border-radius: 10px;
}

.modal-header {
    border-bottom: 1px solid #FFD700;
    background: linear-gradient(to right, #b90808, #800000);
    border-radius: 8px 8px 0 0;
}

.modal-title {
    color: #fff;
    font-weight: bold;
}

.modal-body {
    padding: 20px;
}

.form-deposit{
    margin-bottom: 15px;
}

.form-group h1{
    color: #fff;
}

.manual-deposit{
    color: #fff;
}

.form-group label {
    color: #FFD700;
    font-weight: bold;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFD700;
    color: #fff;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #800000;
    color: #fff;
    box-shadow: 0 0 5px rgba(185, 8, 8, 0.5);
}

/* Captcha section */
.captcha {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #FFD700;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
}

/* Description text */
.memo-desc {
    color: #FFD700;
    font-style: italic;
    margin-top: 20px;
    padding: 10px;
    border-top: 1px solid #FFD700;
    text-align: center;
}

/* Status badge styling */
.status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.status-badge.pending {
    background: #FFA500;
    color: #000;
}

.status-badge.selesai {
    background: #32CD32;
    color: #000;
}

.status-badge.ditolak {
    background: #FF0000;
    color: #fff;
}

/* Profil */
.profile-container {
    max-width: 1400px;
    width: 90%;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Bebas', sans-serif;
}

.profile-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
}

.profile-form {
    flex: 1.3;
    background: #1E790C;
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.password-section {
    flex: 0.7; /* Mengubah flex menjadi lebih kecil dari profile-form */
    background: #2C5F2D;
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.password-section .form-group {
    margin-bottom: 12px;
}

.password-section h2 {
    font-size: 35px; /* Mengurangi ukuran font judul */
    margin-bottom: 20px;
}

.password-section .form-group input {
    padding: 8px 12px;
    font-size: 14px;
}

.password-section .form-group label {
    font-size: 14px;
    margin-bottom: 5px;
}

.submit-button {
    margin: 12px auto;
    width: 90px;
}

.profile-form .form-group,
.password-section .form-group {
    margin-bottom: 20px;
}

.profile-form .form-group label,
.password-section .form-group label {
    color: #fff;
    font-size: 16px;
    font-family: 'Bebas', sans-serif;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.profile-form .form-group input,
.password-section .form-group input {
    width: 100%;
    padding: 12px 15px;
    background: #fff;
    border: none;
    border-radius: 5px;
    color: #000;
    font-size: 16px;
    font-family: 'Bebas', sans-serif;
    letter-spacing: 1px;
}

.profile-form h2,
.password-section h2 {
    color: #fff;
    font-size: 45px;
    font-family: 'Bebas', sans-serif;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 2px solid #70AA65;
    width: 100%;
    display: inline-block;
}

.input-with-button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-with-button input {
    flex: 1;
}

.action-button {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.action-button:hover {
    transform: scale(1.1);
}

.action-button img {
    height: 35px;
    width: auto;
}

.submit-button {
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    padding: 0;
    width: 120px;
    transition: transform 0.2s ease;
}

.submit-button:hover {
    transform: scale(1.05);
}

.submit-button img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Input focus styles */
.profile-form .form-group input:focus,
.password-section .form-group input:focus {
    outline: none;
    /* box-shadow: 0 0 0 2px #FFD700; */
}

/* Readonly input styles */
.profile-form .form-group input[readonly] {
    /* background: #2d0202; */
    cursor: not-allowed;
}

/* Transaction */
/* Main Container */
.pwc-transaction {
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* Button Section */
.pwc-transaction-button-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.pwc-transaction-main-buttons {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.pwc-transaction-main-buttons img {
    height: 6.5vw;
    max-height: 100px;
    width: auto;
}

.pwc-transaction-deposit-options {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 10px;
    padding: 10px;
}

.pwc-transaction-deposit-options img {
    height: 5vw;
    max-height: 60px;
    width: auto;
}
#payment_method_selection input[type="radio"] {
    display: none;
}

/* Action Buttons */
.pwc-transaction-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.pwc-transaction-action-btn:hover {
    transform: scale(1.05);
}

.pwc-transaction-action-btn.active {
    filter: brightness(1.2);
}

/* Layout */
.pwc-transaction-layout {
    display: flex;
    gap: 30px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    min-height: 962px;
    width: 80%;
    margin: 0 auto;
}

/* Form Section */
.pwc-transaction-form-wrapper {
    flex: 1;
    position: relative;
}

/* .pwc-transaction-form {
    background: linear-gradient(180deg, #FFE5A3 0%, #B8860B 100%);
    border-radius: 10px;
    padding: 30px;
    display: none;
    position: absolute;
    width: 40vw;
    max-width: 630px;
    min-height: 483px;
    right: 53%;
    top: 32%;
} */

.pwc-transaction-form.active {
    display: block;
}

.pwc-transaction-form h2 {
    color: #fff;
    font-family: 'Bebas', sans-serif;
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #4A0404;
    padding-bottom: 10px;
}

.pwc-transaction-form-group {
    margin-bottom: 20px;
}

.real-deposit-amount{
    color: #fff;
}

.standard-required-message{
    color: #fff;
}

.pwc-transaction-form-group label {
    display: block;
    color: #fff;
    font-family: 'Bebas', sans-serif;
    margin-bottom: 8px;
    text-transform: uppercase;
    /* text-align: center; */
}

.pwc-transaction-input-prefix {
    position: relative;
    display: flex;
    align-items: center;
}

.pwc-transaction-input-prefix span {
    position: absolute;
    left: 12px;
    color: #fff;
    font-family: 'Bebas', sans-serif;
}

.pwc-transaction-input-prefix input {
    padding-left: 45px !important;
}

.pwc-transaction-form-group select,
.pwc-transaction-form-group input {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: none;
    border-radius: 5px;
    color: #000;
    font-family: 'Bebas', sans-serif;
    font-size: 1vw;
}
.pwc-transaction-form-group select:focus,
.pwc-transaction-form-group input:focus {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: none;
    border-radius: 5px;
    color: #000;
    font-family: 'Bebas', sans-serif;
    font-size: 1vw;
}

/* Submit Button */
.pwc-transaction-submit-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    margin: 20px auto 0;
    padding: 0;
    width: 12vw;
    max-width: 200px;
    transition: transform 0.2s;
}

.pwc-transaction-submit-btn:hover {
    transform: scale(1.05);
}

.pwc-transaction-submit-btn img {
    width: 100%;
    height: auto;
}

/* Info Section */
.pwc-transaction-info-wrapper {
    width: 40vw;
    max-width: 593px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    right: 10%;
    top: 21px;
}

.pwc-transaction-info {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    min-height: 400px;
    width: 100%;
}

.pwc-transaction-info h2 {
    color: #000;
    font-family: 'Bebas', sans-serif;
    font-size: 2.5vw;
    max-font-size: 36px;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 2px solid #4A0404;
    padding-bottom: 10px;
}

/* Filter Section */
.pwc-transaction-info-filter {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.pwc-transaction-radio-group {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.pwc-transaction-radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-family: 'Arial', sans-serif;
    font-size: 1vw;
    max-font-size: 16px;
}

/* Date Dropdown */
.pwc-transaction-date-dropdown {
    position: relative;
    width: 100%;
}

.pwc-transaction-date-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #4A0404;
    border-radius: 5px;
    cursor: pointer;
    background: #fff;
    color: #000;
    font-family: 'Arial', sans-serif;
}

.pwc-transaction-date-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #4A0404;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
}

.pwc-transaction-date-options.active {
    display: block !important;
}

.pwc-transaction-date-option {
    padding: 10px 15px;
    cursor: pointer;
    color: #000;
    font-family: 'Arial', sans-serif;
}

.pwc-transaction-date-option:hover {
    background: #4A0404;
    color: #fff;
}

.pwc-transaction-date-option.selected {
    background: #fff;
    color: #000;
}

/* Table */
.pwc-transaction-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.pwc-transaction-table th,
.pwc-transaction-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.pwc-transaction-table th {
    background: #4A0404;
    color: #fff;
    font-weight: bold;
    font-family: 'Bebas', sans-serif;
}

.pwc-transaction-table td {
    color: #000;
    font-family: 'Arial', sans-serif;
}

/* Bank Status */
.pwc-transaction-bank-status {
    background: linear-gradient(180deg, #FFE5A3 0%, #B8860B 100%);
    border-radius: 10px;
    padding: 6px;
    width: 100%;
    padding-bottom: 16px;
}

.pwc-transaction-bank-status h2 {
    color: #000;
    font-family: 'Bebas', sans-serif;
    font-size: 2.8vw;
    text-align: center;
    margin-bottom: 0px;
    text-transform: uppercase;
    border-bottom: 2px solid #4A0404;
}

.pwc-transaction-bank-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 10px;
    max-width: 404px;
    margin: 0 auto;
}

.pwc-transaction-bank-item {
    text-align: center;
    padding: 5px;
}

.pwc-transaction-bank-item img {
    width: 8vw;
    max-width: 120px;
    height: auto;
}

.pwc-transaction-bank-item span {
    display: block;
    color: #00FF00;
    margin-top: 5px;
    font-size: 0.9vw;
}

.container {
    max-width: 1200px;
    margin: 15px auto 0;
  }
  
  .payment-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    /* margin-bottom: 30px; */
  }

  .payment-button-category {
      /* background-color: #ffeea0; */
      color: #222;
      border: none;
      border-radius: 10px;
      padding: 15px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
      /* width: 180px; */
  }
  
  .payment-button-category:hover {
    /* background-color: #ffdd65; */
    transform: translateY(-3px);
  }
  
  .payment-button-category img {
    margin-right: 10px;
    width: auto;
    height: 100px;
  }
  
  .payment-button {
      /* background-color: #ffeea0; */
      color: #222;
      border: none;
      border-radius: 10px;
      /* padding: 15px 0; */
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
      /* width: 180px; */
  }
  
  .payment-button:hover {
    /* background-color: #ffdd65; */
    transform: translateY(-3px);
  }
  
  .payment-button img {
    /* margin-right: 10px; */
    width: auto;
    height: 50px;
  }
  
  .payment-form {
    background: linear-gradient(to bottom, #ffd466, #d4a84c);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
  }
  
  .payment-form h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    color: #222;
    font-size: 28px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 15px;
  }
  
  .form-group {
    /* margin-bottom: 20px; */
  }
  
  .form-group label {
    display: block;
    /* margin-bottom: 8px; */
    font-weight: bold;
    color: #222;
  }
  
  .form-control {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #7a1e1e;
    background-color: #560e0e;
    color: white;
    font-size: 16px;
  }
  
  .form-select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #7a1e1e;
    background-color: #560e0e;
    color: white;
    font-size: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M10.293 3.293a1 1 0 0 1 1.414 1.414l-5 5a1 1 0 0 1-1.414 0l-5-5a1 1 0 0 1 1.414-1.414L6 7.586l4.293-4.293z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
  }
  
  .payment-summary {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    color: #222;
  }
  
  .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  
  .summary-row:last-child {
    border-top: 1px dashed rgba(0, 0, 0, 0.2);
    padding-top: 8px;
    font-weight: bold;
  }
  
  .submit-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 25px auto 0;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #f9d423, #ffb52b);
    color: #222;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .submit-btn:hover {
    background: linear-gradient(to right, #f9d423, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  .bonus-banner {
    background: linear-gradient(to right, #1a1a1a, #333);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
  }
  
  .bonus-banner::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff5722, #ff9800);
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(15px);
  }
  
  .bonus-info {
    flex: 1;
  }
  
  .bonus-info h3 {
    margin-top: 0;
    font-size: 22px;
    color: #ff9800;
  }
  
  .bonus-info p {
    margin-bottom: 0;
    opacity: 0.8;
  }
  
  .bonus-cta {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .bonus-cta:hover {
    background-color: #ff5722;
    transform: scale(1.05);
  }
  
  .customer-support {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff9800;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .customer-support:hover {
    background-color: #ff5722;
    transform: scale(1.1);
  }
  
  .pwc-transaction-form{
      background: #2C5F2D;
      border-radius: 10px;
      padding: 30px;
  }

  .kirim-button {
      background: linear-gradient(to bottom, #fff04e 0%, #ffab00 100%);
      color: #1a0000;
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 25px;
      text-align: center;
      padding: 10px 0;
      /* width: 100%; */
      min-width: 200px;
      border: none;
      border-radius: 130px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 2px;
      display: block;
      transition: all 0.3s ease;
      margin: 0 auto;
  }

  .kirim-button:hover {
      background: linear-gradient(to bottom, #fff04e 20%, #ff9500 100%);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

/* Bonus CSS */
.bonus__container {
    padding: 20px;
}

.bonus-button-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.bonus-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.bonus-action-btn img {
    max-width: 200px;
    height: auto;
}

.bonus-action-btn:hover {
    transform: translateY(-5px);
}

.bonus-action-btn.active {
    transform: scale(1.05);
}

.bonus-content {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px;
}

.bonus-table-container {
    display: none;
}

.bonus-table-container.active {
    display: block;
}

.referral-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-box {
    background: linear-gradient(to bottom, #FFD700, #FFA500);
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
    color: #000;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.stat-value {
    color: #000;
    font-size: 24px;
    font-weight: bold;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 20px;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
}

.bonus-table th,
.bonus-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #FFD700;
}

.bonus-table th {
    background: linear-gradient(to bottom, #FFD700, #FFA500);
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.bonus-table td {
    color: #fff;
    font-size: 14px;
}

.bonus-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

@media (max-width: 768px) {
    .bonus-button-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bonus-action-btn img {
        max-width: 150px;
    }

    .referral-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-box {
        width: 100%;
        min-width: auto;
    }

    .bonus-table th,
    .bonus-table td {
        padding: 10px;
        font-size: 12px;
    }
}

/* Register CSS */
.register-container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
}

.register-form-wrapper {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-header {
    background: #70AA65;
    color: #fff;
    padding: 15px 20px;
    font-size: 24px;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.page-header i {
    font-size: 20px;
}

.register-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.note-box {
    background: rgba(139, 69, 19, 0.8);
    color: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    width: 100%;
    max-width: 600px;
}

.form-row {
    margin-bottom: 15px;
    width: 100%;
    max-width: 600px;
}

.note-box.warning {
    margin: 20px 0;
}

.catatan {
    font-weight: bold;
    margin-bottom: 5px;
}

.note-box ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.form-row label {
    /* display: flex; */
    color: white;
    /* margin-bottom: 5px; */
    font-weight: bold;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffd700;
    font-size: 16px;
    font-family: sans-serif;
}

.form-row input::placeholder {
    color: #999;
}

.phone-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-code {
    background: rgba(0, 0, 0, 0.6);
    color: #ffd700;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.terms {
    margin: 15px 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: white;
    position: relative;
    padding-left: 25px;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    margin: 0;
}

.terms-text {
    font-size: 14px;
    line-height: 1.4;
    margin-left: 5px;
}

.terms-text a {
    color: #ffb719;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    max-width: 600px;
    padding: 15px;
    background: linear-gradient(to bottom, #ffd700, #b8860b);
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Bebas', sans-serif;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(to bottom, #ffed4a, #daa520);
    transform: scale(1.02);
}

/* Login */
.login-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.login-box {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #FFD700;
}

.login-header-image {
    display: block;
    width: 80%;
    max-width: 250px;
    margin: 0 auto 30px;
}

.login-page-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #FFD700;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    color: #000;
}

.form-group input::placeholder {
    color: #666;
}

.form-group input:focus {
    outline: none;
    border-color: #ffd900;
    box-shadow: 0 0 5px rgba(255, 217, 0, 0.5);
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.custom-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-page-submit {
    background: linear-gradient(to right, #FFD700, #FFA500);
    color: #000;
}

.login-page-submit:hover {
    background: linear-gradient(to right, #FFA500, #FFD700);
    transform: translateY(-2px);
}

.register-page-btn {
    background: linear-gradient(to right, #4CAF50, #45a049);
    color: white;
}

.register-page-btn:hover {
    background: linear-gradient(to right, #45a049, #4CAF50);
    transform: translateY(-2px);
}

.forgot-page-btn {
    background: linear-gradient(to right, #2196F3, #1976D2);
    color: white;
}

.forgot-page-btn:hover {
    background: linear-gradient(to right, #1976D2, #2196F3);
    transform: translateY(-2px);
}

@media screen and (max-width: 1600px) {
    .login-box {
        max-width: 380px;
        padding: 25px;
    }

    .login-header-image {
        max-width: 230px;
    }

    .form-group input {
        padding: 10px 12px;
        font-size: 15px;
    }

    .custom-btn {
        padding: 10px 18px;
        font-size: 15px;
    }
}

@media screen and (max-width: 1366px) {
    .login-box {
        max-width: 350px;
        padding: 20px;
    }

    .login-header-image {
        max-width: 210px;
    }

    .form-group input {
        padding: 8px 10px;
        font-size: 14px;
    }

    .custom-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Forget Password CSS */
.forgot-container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
}

.forgot-form-wrapper {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.forgot-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-row {
    margin-bottom: 15px;
    width: 100%;
    max-width: 600px;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
    justify-content: flex-end;
}

.cancel-btn {
    padding: 12px 30px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.reset-btn {
    padding: 12px 30px;
    background: #0099ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cancel-btn:hover,
.reset-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Custom CSS */
/* HEADER */
.fix-nav-top{
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    position: fixed;
}

.top-icons span{
    color: #fff;
}

.fa-eye {
    color: #fff;
}

.fa-eye-slash {
    color: #fff;
}

.copy-input-button-field {
    display: flex;
}

.form-row {
    display: flex;
    align-items: center;
}

/* FOOER */
.provider-container h5 {
    color: #fff;
}

.provider-container img {
    filter: grayscale(100%);
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.hover-list {
    display: flex;
    flex-wrap: wrap;
}

ul, ol {
    list-style: none;
}

.hover-list > li {
    position: relative;
    margin: auto;
}

.provider-container {
    display: block;
    width: auto;
    padding: 15px; 
    /*border-top:1px solid #3b4b71; */
    border-radius: 5px;
    position: relative;
    /* vertical-align: top; */
    /* margin-bottom: 35px; */
}

.provider-container > h5 {
    /* position: absolute; */
    /* top: -30px; */
    padding: 0 10px;
    font-size: 17px;
    margin: 0 auto 15px;
    right: 0;
    left: 0;
    text-align: center;
}

.col-md-1  { flex: 0 0 auto; width: 8.333333%; }
.col-md-2  { flex: 0 0 auto; width: 16.666667%; }
.col-md-3  { flex: 0 0 auto; width: 25%; }
.col-md-4  { flex: 0 0 auto; width: 33.333333%; }
.col-md-5  { flex: 0 0 auto; width: 41.666667%; }
.col-md-6  { flex: 0 0 auto; width: 50%; }
.col-md-7  { flex: 0 0 auto; width: 58.333333%; }
.col-md-8  { flex: 0 0 auto; width: 66.666667%; }
.col-md-9  { flex: 0 0 auto; width: 75%; }
.col-md-10 { flex: 0 0 auto; width: 83.333333%; }
.col-md-11 { flex: 0 0 auto; width: 91.666667%; }
.col-md-12 { flex: 0 0 auto; width: 100%; }

.vertical-align{
    display: flex;
    justify-content: center;
    align-items: center;
}