html, body {
    height: 100%;
}

body {
    background-image: url('../../../images/proker/pelatwir/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed; /* Keep the background fixed during scroll */
    min-height: 100vh; /* Ensure body takes full viewport height */
    margin: 0; /* Remove default body margin */
}

/* Gaya track scrollbar */
/* ::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
} */

/* Gaya thumb scrollbar */
/* ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #4470B2, #1C2532); 
    border-radius: 10px; 
} */

/* Gaya saat thumb di-hover */
/* ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #1C2532, #4470B2); 
} */

.step-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background-color: #b43838;
    border-radius: 10px 10px 0px 0px;
}

.step-button-group .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #b43838;
    color: black;
    font-weight: bold;
    margin: 5px;
    flex: 1 1 auto;
}

.step-button-group .btn.active {
    background-color: rgba(220, 220, 200, 0.5);
    color: white !important;
    opacity: 1;
}

.carousel-item .card {
    border-radius: 0 0 15px 15px;
    border: none;
}

.btn-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-container .btn {
    margin: 5px;
}

/* .register-btn {
    background-color: #ECD827;
    color: white;
    font-size: 16px; 
    border-radius: 4px; 
    cursor: pointer; 
    transition: background 0.3s; 
    z-index: 2;
} */

/* .register-btn:hover {
    filter: brightness(0.8);
} */

.prev-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    padding: 4px 12px;
    border: 2px solid #c64d4d;
    background-color: transparent; 
    color: #c64d4d; 
    border-radius: 4px; 
    cursor: pointer; 
    overflow: hidden; 
    transition: color 0.3s; 
}

.prev-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c64d4d;
    z-index: -1; 
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
}

.prev-btn:hover {
    color: white; 
}

.prev-btn:hover::before {
    transform: scaleX(1);
}

.form-title {
    max-width: 375px !important;
}

/* Gaya untuk tombol submit agar mirip dengan form Dudu */
.btn-dudu-submit {
    background-color: #FF8C42; /* Warna orange/peach dari Dudu form */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-dudu-submit:hover {
    filter: brightness(0.9);
}

.custom-form-card {
    background-color: #ffffff; /* White background for the form card */
    border-radius: 15px;
    max-width: 600px; /* Set a max-width for the form card */
    margin: 50px auto; /* Center the card horizontally and add some top margin */
    padding: 30px;
}

/* Ensure the layout is clean */
.container-fluid {
    padding-top: 50px;
    padding-bottom: 50px;
}

.bg-image {
    display: none !important; /* Hide any element with bg-image class */
}
