﻿#announcement {
    position: relative;
    overflow: hidden;
}

#announcementLabel {
    text-align: center;
    color: #fff;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

#announcementContent {
    background: #fff;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

#announcementContent:before {
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    left: 50px;
    z-index: 1;
    transform: rotate(45deg);
}

#announcementContent:after {
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    right: -50px;
    z-index: 1;
    transform: rotate(45deg);
}

#announcementContent p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

#content {
    background: url('../images/template1/bg1.jpg');
}

#content .content-div {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
}

#content form {
    max-width: 650px;
    margin: auto;
}

#content form button {
    padding: 10px;
}

#content .v-code-input {
    padding-right: 112px;
}

#content .v-code {
    position: absolute;
    top: 1px;
    right: 16px;
    height: 36px;
    cursor: pointer;
}

#content .v-code img {
    width: 100px;
    height: 100%;
    border-radius: 0 .25rem .25rem 0;
}

@media (min-width: 768px) {
    #content form .col-form-label {
        text-align: right;
    }
}
