#enter-awards{
    margin-top: 5vh;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

#enter-awards p{
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}

#enter-awards h1{
    text-align: center;
    font-size: 45px;
}

form{
    margin-top: 3vh;
    margin-bottom: 10vh;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;   
    -moz-appearance: none;
    -webkit-appearance: none;
}

.errorlist{
    background-color: var(--red);
    padding: 5px 10px;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.errorlist li{
    color: var(--white);
    font-family: groteskLight;
}

.form-section{
    margin-bottom: 2vh;
}

.form-section p{
    font-size: 18px;
}

.form-section .info{
    text-align: center;
}

.payment-details{
    display: flex;
    flex-direction: column;
}

.payment-details p::before{
    content: attr(data-title);
    font-family: groteskSemi;
    margin-right: 6px;
}

.payment-details .detail{
    margin-bottom: 10px;
}

form label{
    margin: 1vh 0;
    display: block;
}

input{
    min-height: 42px;
}

input[type=radio]{
    border-color: black;
}

#id_payment_method li label{
    display: flex;
    align-items: center;
    font-size: 20px;
}

#id_payment_method input{
    margin-right: 12px;
}

li{
    list-style: none;
}

form h2{
    margin-bottom: 2vh;
}


p a{
    color: var(--yellow);
    transition: 0.2s;
}

p a:hover{
    color: var(--orange-yellow);
}

form input[type=text],[type=number],[type=email], textarea{
    width: 100%;
}

.submit-button{
    min-height: 45px;
    padding: 0;
    width: 40%;
}

#id_sections li{
    font-size: 24px;
    font-family: poppinsReg;
    color: var(--white);
}

#id_sections label{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-family: groteskLight;
}

#id_sections input{
    margin-right: 15px;
}

#id_sections input, .agreement input{
    width: 17px;
    height: 17px;
}


#recaptcha-element{
    margin-bottom: 2vh;
}

#contestant-details select{
    min-height: 35px;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: var(--white);
    color: var(--dark-black);
    padding-left: 10px;
}

#id_birth_date_month{
    width: 50%;
}

#id_birth_date_day{
    width: 20%;
}

#id_birth_date_year{
    width: 30%;
}

.agreement{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#rules-agreement p{
    width: 90%;
}

@media screen and (min-width:700px) {

    #enter-awards h1{
        font-size: 55px;
    }
    .agreement{
        justify-content: space-around;
    }
    #rules-agreement p{
    width: 95%;
    }

}

@media screen and (min-width:900px) {
    
    form{
        width: 80%;
    }

    .submit-button{
        width: 28%;
    }

    #enter-awards h1{
        font-size: 65px;
    }

}

@media screen and (min-width:1250px) {
    
    form{
        width: 65%;
    }

    #enter-awards h1{
        font-size: 75px;
    }

}

@media screen and (min-width:1750px) {
    
    form{
        width: 55%;
    }

}