.bg-animated {
    background: gray url(../images/bg.jpg) repeat 0 0;
    -webkit-animation: slide 20s linear infinite;
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -400px 0;
    }
}

.validation-summary-errors {
    text-align: center;
    color: red;
    background: #ffff76;
    border-radius: 10px;
}

.validation-summary-errors ul {
    list-style: none;
    padding: 0;
}

input[type="file"] {
    display: none;
}

.custom-file-upload {
    display: block;
    cursor: pointer;
}

.custom-file-upload .btn {
    margin-top: 10px;
}

.form-group label {
    font-weight: bold;
}