.body-gradient {
    background: linear-gradient(to right, #6c3483, #4a235a, #6c3483);
    color: black;
}

.form-gradient {
    background: linear-gradient(to right, #ffffff, #ffffff);
    color: black;
}

.footer-gradient {
    background: linear-gradient(to right, #4a235a, #4a235a);
    color: black;
}

.sidebar-gradient {
    background: linear-gradient(to right, #6c3483, #6c3483, #4a235a);
    color: white;
    border: 1px solid black;
}

.btn-gradient {
    background: linear-gradient(to right, #6c3483, #6c3483, #4a235a);
    color: white;
    border: 1px solid white;
    transition: 0.3s ease;
}

.btn-gradient:hover {
    background-color: white;
    opacity: 0.9;
    transform: scale(1.02);
    opacity: 1;
}

.form-label-alignment {
    display: block;
    text-align: left;
    margin-bottom: 2px;
}

.h-captcha {
    width: 100% !important;
    max-width: 100%;
}

@media (max-width: 576px) {
    .h-captcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.content {
    flex: 1;
}

#ad-overlay {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 302px;
    height: 258px;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#ad-top-overlay {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 302px;
    height: 258px;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#ad-overlay iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 16px;
    cursor: pointer;
}