body {
    font-family: 'Prompt', sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
    /* padding: 20px; */
    margin: 0;
}

.slider {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 10s ease-in-out;
}

.slides img {
    display: none;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.slides img.active {
    display: block;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #717171;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #bbb;

}

.container {
    width: 100%;
    max-width: 400px;
    /* Ensures it doesn't stretch too wide */
    margin: 0 auto;
    display: block;
    /* Ensures it's not collapsed */
}

.form-submit {
    padding: 0px 10px;
    background-color: #000;
}

input,
select,
button {
    width: 90%;
    max-width: 400px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

input,
select {
    background-color: #333;
    color: #fff;
}

select {
    appearance: none;
    background-color: #333;
    color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    text-align: center;
    background-repeat: no-repeat;
    background-position: right center;
    /* Adjust right padding */
    padding-right: 15px;
    background-size: 20px 20px;
    /* Ensure text does not overlap */
}

button {
    background-color: #ff007f;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 40px;
}

.size-chart {
    display: flex;
    justify-content: space-around;
    font-weight: bold;
    padding: 0px 5px;
}

.size-chart div {
    width: 18%;
}

.bank-details {
    font-size: 12px;
    margin-top: 25px;
    margin-bottom: 25px;
    line-height: 6px;
}

.logo-kbank {
    width: 100%;
    max-width: 80px;
    margin-bottom: -35px;
    margin-top: -25px;
}

.total {
    padding: 15px;
    font-weight: bold;
    color: yellow;
    font-size: 22px;
}

.body-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.success-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.size-chart-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 150px;
}

.error-border {
    border: 2px solid red !important;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.success-message {
    color: green;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.custom-file-input {
    display: none;
    /* Hide default input */
}

.custom-file-label {
    display: inline-block;
    background-color: #ff007f;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.file-name {
    margin-left: 10px;
    color: #fff;
}