/**
 * Thank You Page Styles
 * For Step 4: Completion and success message
 */

/* ========================================
   THANK YOU CONTAINER
   ======================================== */

.af-registration-wrapper .af-thankyou-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.af-registration-wrapper .af-thankyou-title {
    margin-bottom: 32px;
}

.af-registration-wrapper .af-thankyou-title .af-title-large {
    margin-bottom: 16px !important;
}

.af-registration-wrapper .af-thankyou-title .af-subtitle {
    font-size: 24px;
    max-width: 700px;
    margin: 0 auto !important;
    line-height: 1.5;
}

/* ========================================
   THANK YOU IMAGE
   ======================================== */

.af-registration-wrapper .af-thankyou-image-container {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.af-registration-wrapper .af-thankyou-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 440px;
    object-fit: cover;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    .af-registration-wrapper .af-thankyou-container {
        padding: 32px 16px;
    }

    .af-registration-wrapper .af-thankyou-title .af-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .af-registration-wrapper .af-thankyou-container {
        padding: 24px 16px;
    }

    .af-registration-wrapper .af-thankyou-title .af-title-large {
        font-size: 32px;
    }

    .af-registration-wrapper .af-thankyou-title .af-subtitle {
        font-size: 16px;
    }

    .af-registration-wrapper .af-thankyou-image {
        width: 100%;
        height: auto;
    }
}