#form-competition {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#form-competition .form-field {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}
#form-competition .form-field label {
    font-size: 1rem;
    color : rgba(var(--primary-dark-grey));
}
#form-competition input {
    border: solid 1px rgba(var(--primary-dark-grey));
    padding: 5px;
}
#image-load {
    margin-top: 10px;
    padding: 0 !important;
    font-size: 1rem;
    color : rgba(var(--primary-dark-grey));
}
#image-load::file-selector-button {
    padding: 10px;
    background-color:  rgba(var(--primary-green));
    border: 1px solid rgba(var(--primary-green));
    color: rgba(var(--bg));
}
#image-load::file-selector-button:hover {
    background-color:  rgba(var(--feature-dark-green));
    border: 1px solid rgba(var(--feature-dark-green));
}
.checkbox-div {
    flex-direction: row !important;
    margin: 20px 0 !important;
}
input[type=checkbox]
{
  -ms-transform: scale(1.3); /* IE */
  -moz-transform: scale(1.3); /* FF */
  -webkit-transform: scale(1.3); /* Safari and Chrome */
  -o-transform: scale(1.3); /* Opera */
  transform: scale(1.3);
  margin-right: 10px;
}
.checkbox-div a {
    font-weight: 700;
    color : rgba(var(--primary-dark-grey)) !important;
    text-decoration: none;
}
.checkbox-div span {
    color : rgba(var(--feature-red)) !important;
}
.input-error input {
    border: solid 1px #ff6685 !important;
    color: #ff6685;
}
.input-error p {
    color: #ff6685;
    margin: 5px 0;
    font-size: 1em;
}

@media only screen and (min-width: 992px) {
    #form-competition {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
    }
    .halve {
        max-width:49% !important;
    }
    #form-competition .form-field label {
        font-size: 1.231rem;
    }
    #image-load {
        font-size: 1.231rem;
    }
}

@media only screen and (min-width: 1200px) {
    #submit-btn {
        width: 49%;
        float: right;
    }
}

@media only screen and (min-width: 1600px) {
    #form-competition {
        width: 90%;
    }
}