.contestform-body{
    width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contest-title {
    width: 90%;
    margin: 80px auto 50px;
    font-weight: 500;
}

.contest-title h1 {
    font-size: 30px;
    padding-bottom: 30px;
}

.contest-title h1 > span{
    display: none;
}

.contest-text{
    line-height: 24px;
}

.contest-text > span {
    color: #006934;
}

.contest-period{
    margin: 0 auto 100px;
    color: #006934;
}

.contest-period > h3{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contest-period > p{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: underline;
}

.contest-period > p > span{
    font-size: 24px;
    font-weight: 800;
}

.form-list{
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.form-group{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-file-text{
    line-height: 20px;
}

.text-danger{
    font-size: 12px;
    margin-left: 15px;
    padding: 1px 5px;
    color: white;
    background-color: red;
}

.form-control{
    width: 355px;
}

.form-alert{
    margin: 50px auto 20px;
    padding: 10px 0;
    color: red;
    background-color: #EEEEEE;
}

.form-alert > p:first-child{
    font-size: 22px;
    margin: 7px auto auto 8vw;
}

.form-radio{
    display: flex;
    flex-direction: column;
    width: 380px;
    line-height: 25px;
}

.form-button{
    margin: 50px auto 100px;
    width: 200px;
}

.form-button > p{
    display: flex;
    flex-direction: column;
}

.form-button > p > input{
    padding: 10px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    background: linear-gradient(90deg, #005b18 0%, #127744 50%, #13C269 100%);
}

.form-button:hover {
    opacity: .7;
    transition: .3s;
}

.form-thankspage{
    display: none;
    font-size: 18px;
    font-weight: 600;
}

.form-thankspage p{
    line-height: 30px;
    margin-bottom: 50px;
}

.form-thankspage p > a{
    font-weight: 800;
    color: blue;
}

@media screen and (max-width: 800px) {
    .contestform-body{
        width: 90%;
    }

    .contest-title h1{
        font-size: 20px;
        line-height: 15px;
    }

    .contest-title h1 > span{
        display: block;
    }

    .contest-text{
        font-size: 14px;
        text-align: left;
    }

    .form-list{
        /* text-align: center; */
        width: 90%;
        margin: 0 auto;
        font-size: 14px;
    }

    .form-group{
        flex-direction: column;
    }

    .form-group p{
        margin-bottom: 10px;
    }

    .form-control{
        width: 100%;
    }

    .form-alert{
        margin: 30px auto 20px;
    }

    .form-alert > p:first-child{
        font-size: 18px;
        margin: 0 0 10px;
    }

    .form-thankspage{
        font-size: 14px;
    }
}