.border-yellow {
    border: 1px solid var(--theme-yellow);
}

.bg-yellow {
    background-color: var(--theme-yellow);
    color: black;
}

.big-yellow-title {
    font-family: 'Inter', sans-serif;
    /* specific display font if needed */
    font-weight: 900;
    font-size: 9vw;
    /* Adjust based on viewport */
    color: var(--theme-yellow);
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    margin-bottom: 2rem;
}

/* Form Styles */
.form-row {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the row content */
    margin-bottom: 1.5rem;
    display: grid;
    padding-right: 3vw;
}

.form-row h3 {
    width: 25vh;
    /* Fixed width for labels */
    text-align: left;
    padding-right: 1.5rem;
    justify-content: center;
}

.form-input-col {
    width: 100%;
}

.custom-input {
    width: 70vw;
    border-radius: 50px;
    /* Fully rounded */
    border: none;
    font-size: 1rem;
    color: black;
    outline: none;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin-block-end: 1rem;

}

.btn-submit {
    background-color: transparent;
    border: 2px solid var(--theme-red);
    color: var(--theme-red);
    padding: 0.5rem 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 1rem;
}

.btn-submit-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}



.rules-list li {
    margin-bottom: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: baseline;
    /* Allinea il testo sulla base delle lettere */
    gap: 10px;
    column-gap: 15px;
    /* Spazio tra la regola e il testo */
    margin-bottom: 15px;
    /* Spazio tra una riga e l'altra */
    list-style: none;
    align-items: baseline;
}

@font-face {
    font-family: 'satoshi';
    src: url('../fonts/Satoshi-Variable.ttf') format('truetype');
}

.btn-il-tuo-code {
    display: inline-block;
    padding: 5px 20px 5px;
    /* Left 0 for alignment */
    background-color: #FFFE03;
    /* Force white text */
    font-family: 'druk-super', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    color: black;
    margin-top: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: auto;
    /* Default width on desktop */
}

.list-container h3 {
    font-family: 'satoshi';
    font-weight: 900;
    line-height: normal;
    color: #FFFE03;
    white-space: nowrap;
}

.list-container p {
    font-family: 'satoshi';
    font-style: regular;
    font-weight: 500;
    line-height: 100%;
    color: #ffffff;
}

.list-container h2 {
    font-family: 'druk-bold';
    font-weight: 700;
    line-height: normal;
    color: #FFFE03;
}

.list-container {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5vw;
    text-align: left;
}

.il-tuo-code-text {
    flex-wrap: wrap;
    justify-content: center;
    padding: 5vw;
    align-items: center;
}

.il-tuo-code-text p {

    align-items: center;
    font-size: 1.05rem;
}

.il-tuo-code-title {
    display: flex;
    /* Attiva Flexbox */
    justify-content: center;
    /* Centra orizzontalmente */
    align-items: center;
    /* Centra verticalmente */
    /* Occupa tutta la larghezza */

    text-align: center;
    /* Allinea il testo all'interno dell'h1 */
    overflow: visible;
    font-size: 8.65vw;
    margin-bottom: 5vw;
}

.il-tuo-code-container {
    margin-bottom: 5vh;

}

.container-text {
    padding-right: 8vw;
    padding-left: 4vw;

}

.il-tuo-code hr {

    margin-top: 1vh;
    margin-bottom: 6vh;
    /* Make line extend full width of the page */
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.hr-2 hr {

    margin-top: 6vh;
    margin-bottom: 2vh;
    /* Make line extend full width of the page */
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.note-text p {
    align-items: center;
    font-size: 1.05rem;
    line-height: normal;
}


@media screen and (max-width: 1220px) {
    .il-tuo-code-title {
        font-size: 9vw;
    }

    .list-container p {
        font-size: 1.05rem;
    }

    .container-text p {
        font-size: 1.05rem;
    }

    .container-text h2 {
        font-size: 2.5vw;
    }

    .container-text h3 {
        font-size: 2vw;
    }

    .list-container h2 {
        font-size: 2.5vw;
    }

    .list-container h3 {
        font-size: 2vw;
    }

    .form-row h3 {
        font-size: 2vw;
    }







}









@media screen and (max-width: 768px) {
    .il-tuo-code-title {
        font-size: 9vw;
    }

    .list-container p {
        font-size: 1.05rem;
    }

    .list-container h2 {
        font-size: 3.5vw;
    }

    .list-container h3 {
        font-size: 3vw;
    }

    .form-row h3 {
        font-size: 3vw;
    }

    .container-text p {
        font-size: 1.05rem;
    }

    .container-text h2 {
        font-size: 3.5vw;
    }

    .container-text h3 {
        font-size: 3vw;
    }










}