#content{
    margin-top: 100px;
    display: flex;
}

.content-area{
    margin: 0 auto;
    align-self: stretch;
    justify-content: center;
    display: flex;
}

.content-area form{
    max-width: 500px;
    padding: 20px;
}

.form-container{
    margin-bottom: 50px;
}

.form-container .form-row{
    display: flex;
    align-self: stretch;
    gap: 20px;
    margin-bottom: 20px;
}

.form-container input[type="submit"]{
    align-self: stretch;
    height: 50px;
    text-align:center;
    border-radius: 25px;
    padding: 5px;
    width: 100%;
    border: 0.5px solid #d9d9d9;
    box-shadow: 3px 5px 5px 1px rgba(219,208,208,0.75);
    -webkit-box-shadow: 3px 5px 5px 1px rgba(219,208,208,0.75);
    -moz-box-shadow: 3px 5px 5px 1px rgba(219,208,208,0.75);
    color: #000;
    font-size: 16px;
}

.form-row .form-col:first-child{
    width: 110px;
}

.form-row .form-col:last-child {
    flex: 1;  
}

.form-col input{
    width: 100%;
    height: 25px;
    /*border: 1px solid #e5007f;*/
    border: none;
    background: #efe5f0;
    border-radius: 5px;
    padding: 10px;
}

.form-col select{
    width: 100%;
    height: 25px;
    background: #efe5f0;
    border-radius: 5px;
    padding: 0 10px;
    border: none;
}

.color-options {
    display: flex;
    gap: 20px;
}

.color-item {
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.color-item input[type="radio"] {
    display: none;
}

.color-item img {
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-radius: 10px;
    transition: 0.3s ease;
}

.color-item input[type="radio"]:checked + img {
    border-color: #0073aa;
    box-shadow: 0 0 8px rgba(0, 115, 170, .7);
}


.consent-container{
    background: #f8f8f8;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.consent-container label{
    font-weight: 600;
}


/*Thank you page*/
    .thankyou-wrapper {
        max-width: 720px;
        margin: 0 auto 40px;
        padding: 25px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        text-align: center;
        font-family: Arial, sans-serif;
    }

    .thankyou-title {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #222;
    }

    .thankyou-sub {
        font-size: 18px;
        color: #444;
        margin-bottom: 25px;
    }

    .promo-code-box {
        display: inline-block;
        padding: 15px 25px;
        background: #0073aa;
        color: #fff;
        font-size: 28px;
        font-weight: bold;
        border-radius: 10px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }
    
    .promo-code-note {
        font-size: 16px;
        color: #555;
        margin-bottom: 25px;
    }

    .map-section {
        margin-top: 30px;
    }

    .map-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #333;
    }

    .map-embed {
        width: 100%;
        height: 420px;
        border: 0;
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    }

    .map-button {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 22px;
        background: #28a745;
        color: white;
        font-size: 18px;
        border-radius: 8px;
        text-decoration: none;
        transition: 0.2s;
    }

    .map-button:hover {
        background: #1e7e34;
    }

    @media (max-width: 600px) {
        .promo-code-box {
            font-size: 24px;
            padding: 12px 20px;
        }
        .map-embed {
            height: 300px;
        }
    }

/*END THANK YOU PAGE*/

.claim-wrapper button[type="submit"]{
    align-self: stretch;
    height: 50px;
    text-align:center;
    border-radius: 25px;
    padding: 5px;
    width: 100%;
    border: 0.5px solid #d9d9d9;
    box-shadow: 3px 5px 5px 1px rgba(219,208,208,0.75);
    -webkit-box-shadow: 3px 5px 5px 1px rgba(219,208,208,0.75);
    -moz-box-shadow: 3px 5px 5px 1px rgba(219,208,208,0.75);
    color: #000;
    font-size: 16px;
}

.location-col select{
    margin-bottom: 5px;
}

.select-header{
    font-weight: bold;
}
@media screen and (min-width: 56.875em) {
    .content-area {
        width: 100%;
    }
}