.participation {
    color: #ffffff;
    width: 80%;
    font-size: 1rem;
    text-align: left;
    margin-top: 15px;
    border: 1px solid;
    padding: 8px;
}

.participation span {
    font-weight: bold;
}

.input span.left {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}


.input span.right {

    height: 40px;
    width: 60%;
    border: 1px solid #ffffff;
    border-radius: 50px;
    outline: none;
    background-color: transparent;
    padding: 7px 15px 0  15px;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width : 1400px) and (min-width : 1081px) {
    .input span.left{
        font-size: 0.8rem;
    }
    .input span.right{
        height: 30px;
        font-size: 0.8rem;
    }

}
@media screen and (max-width : 1080px) and (min-width : 768px) {
    .input span.left{
        margin-bottom: 15px;
    }
    .input span.right{
        width: 100%;
    }
}
@media screen and (max-width : 767px) and (min-width : 0px) {
    .input span.left{
        margin-bottom: 15px;
    }
    .input span.right{
        width: 100%;
    }
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    width : 80%;
}

.alert-info {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}