body {
    background-color: #50E3C2;
    background-image:
        radial-gradient(at 47% 33%, hsl(162.00, 77%, 40%) 0, transparent 59%),
        radial-gradient(at 82% 65%, hsl(198.00, 100%, 50%) 0, transparent 55%);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    height: 100vh;
}

/* Center the modal both vertically and horizontally */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    max-height: 549px;
}

.main-container {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.50);
    border-radius: 20px;
    border: 1px solid rgba(209, 213, 219, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.continue-button {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Adjust modal size for small screens */
@media (max-width: 768px) {
    .container {
        width: 100%;
        /* Adjust width for small screens */
        max-width: nonepx;
        /* Set maximum width */
    }
}

/* Overlay styles for loading and success */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

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

.loading-center {
    text-align: center;
}

.loading-center svg {
    display: block;
    margin: 0 auto;
}
