:root {
    --card-bg: #8A204F;
    --gold: #F0B336;
    --gold-text: #8A204F;
}

* {
    box-sizing: border-box;
}

.font-helvetica-neue-lt-pro {
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
}


body {
    margin: 0;
    font-family: "helvetica-neue-lt-pro", Helvetica, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
    font-weight: 400;
    font-style: normal;
    color: #222;
}

html {
    font-size: 16px;
}

a {
    text-decoration:underline;
}

a:hover {
    text-decoration: none;
}

.sweepstakes-page {
    position: relative;
    min-height: 100vh;
    padding-bottom: 4rem;
    background-image: url("/img/BBW-bg.jpg");
    background-size: cover;
    background-position: left top;
}

    .sweepstakes-page .top-line {
        position: relative;
        width: 100%;
        background-color: #005699;
        padding-left: 4rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        margin-bottom: 5rem;
    }

    .sweepstakes-page .top-line img {
        width: 100%;
        max-width: 400px;
    }

    

    .sweepstakes-card {
        width: 80%;
        max-width: 1146px;
        background: var(--card-bg);
        margin: auto;
        padding: 90px;
        color: #fff;
    }

        .sweepstakes-card h1 {
            font-size: clamp(3rem, 9vw, 7.813rem);
            font-family: "helvetica-neue-lt-pro", sans-serif;
            font-weight: 300;
            font-style: normal;
            color: var(--gold);
            margin: 0;
            line-height: 1;
            margin-bottom: 4rem;
        }

        .sweepstakes-card h2 {
            font-size: 3.125rem;
            font-size: clamp(1.375rem, 5vw, 3.125rem);
            font-family: "helvetica-neue-lt-pro", sans-serif;
            font-weight: 400;
            font-style: normal;
            color: #fff;
            margin: 0;
            line-height: 1;
            margin-bottom: 4rem;
            margin-top: 2rem;
        }

        .sweepstakes-card .header {
            position: relative;
            display: block;
            width: 100%;
        }

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

    .custom-list li {
        counter-increment: step;
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        font-size: clamp(1rem, 3vw, 1.75rem);
    }

        .custom-list li::before {
            content: counter(step);
            width: 3.813rem;
            height: 3.813rem;
            flex: 0 0 3.813rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: var(--gold);
            color: var(--card-bg);
            font-weight: bold;
            font-size: 1.75rem;
            line-height: 1;
        }

.sweepstakes-legal {
    font-size: clamp(0.75rem, 2vw, 1.125rem);
    line-height: 1.5;
    color: #fff;
    margin: 12px 0 24px;
}

    .sweepstakes-legal a {
        color: #fff;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

.form-group {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    color: #222;
    background-color: #f2f0ee;
    border: none;
    border-radius: 2px;
}

.form-control::placeholder {
    color: #6b6b6b;
}

.form-check {
    display: flex;
    flex-direction: column;
}

.flex-column {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-check-input {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.form-check-label {
    flex: 1;
    cursor: pointer;
    font-size: 1.375rem;
    font-size: clamp(1rem, 2vw, 1.375rem);
}

    .form-check-label a {
        color: #fff;
    }



    .field-error {
        display: block;
        color: #ffd9d9;
        font-size: 0.85rem;
        margin-top: 4px;
        margin-left: 2.5rem;
    }

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold-text);
    background-color: var(--gold);
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.message {
    padding: 12px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    line-height: 1.4;
    font-size: 0.9rem;
}

.message-success {
    background-color: rgba(255, 255, 255, 0.92);
    color: #1e7e34;
}

.message-info {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.message-error {
    background-color: rgba(255, 255, 255, 0.92);
    color: #b00020;
}

.footer {
    font-size: clamp(1rem, 2vw, 1.375rem);
    text-align: center;
    margin-top: 4rem;
    color: #fff;
}

    .footer a {
        color: #fff;
    }


@media (max-width: 768px) {
    .sweepstakes-page {
        padding: 0;
    }

    .sweepstakes-card {
        width: 100%;
        padding: 28px 20px;
        min-height: 100vh;
    }

    .sweepstakes-page .top-line {
        position: relative;
        width: 100%;
        background-color: #005699;
        padding-left: 28px;
        padding-top: 1rem;
        padding-bottom: 1rem;
        margin-bottom: 0;
    }

        .sweepstakes-page .top-line img {
            width: 100%;
            max-width: 250px;
        }

    .sweepstakes-card h1 {
        margin-bottom: 2rem;
    }
}


