html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}


@media (min-width: 768px) and (max-width: 1024px) {
    .spinwheel-container {
        padding: 3rem 1rem;
         /* margin-top: 5%; */
         position: relative;
         width: 550px;
         height: 550px;
         margin-bottom: 10px;
     }
}

@media (min-width: 1199.98px) and (max-width: 1399.98px) {
    .spinwheel-container {
        padding: 3rem 1rem;
         /* margin-top: 5%; */
         position: relative;
         width: 550px;
         height: 550px;
         margin-bottom: 10px;
     }
}

@media (min-width: 1399.98px) and (max-width: 1920.98px) {
    .spinwheel-container {
        padding: 16rem 1rem;
         /* margin-top: 5%; */
         position: relative;
         width: 550px;
         height: 550px;
         margin-bottom: 10px;
     }
}


.container-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.spinwheel {
    flex-direction: column;
    width: 50%;
    height: 50%;
    animation: spin 4s linear infinite;
}

/* @keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
} */

.form-container {
    margin-top: auto;
    background-color: transparent;
    padding: 20px;
    width: 100%;
}

.form-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.btn-submit {
    width: 100%;
    background: #ddb86e;
}
.btn-submit:hover {
    background-color: #ddb86e;
    transform: scale(1.1); /* Memperbesar tombol saat hover */
}

@media (min-width: 344px) and (max-width: 375px) {
    .spinwheel {
        width: 80%;
    }
}

@media (min-width: 375px) and (max-width: 430px) {
    .spinwheel-container {
        margin-top: 28%;
        width: 400px;
        height: 400px;
    }
    .spinwheel {
        width: 80%;
    }
    h5{
        font-size: 18px;
    }
    .form-container{
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .spinwheel-container {
        /* margin-top: 26%;
        width: 300px;
        height: 300px; */
    }
}

