body {
    background: #000;
    color: #fff;
}

.cs-block {
    position: absolute;
    z-index: 2;
    left: 2rem;
    top: 2rem;
}

.contacts-block {
    position: absolute;
    z-index: 2;
    right: 2rem;
    bottom: 2rem;
}

.video-sound {
    position: absolute;
    z-index: 2;
    right: 2rem;
    top: 2rem;
}

.video-sound-content {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}

.video-sound-message p {
    margin-top: 1rem;
    margin-bottom: 1rem !important;
}

.video-sound-message {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fdfeff;
    animation: messageanimation 1s infinite alternate;
    font-size: 18px;
}

@keyframes messageanimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-10px);
    }
}

@media only screen and (max-width: 768px)
{
    .video-sound-message {
        font-size: 14px;
    }
}

.video-sound-button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0;
    background: #fdfeff;
    outline: 0;
    border: 0;
    border-radius: 50%;
    animation: Pulse 1.5s infinite;
    transition: 1s;
    font-size: 28px;
    width: 56px;
    height: 56px;
}

@keyframes Pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(253, 254, 255, 0.4);
        box-shadow: 0 0 0 0 rgba(253, 254, 255, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 20px rgba(253, 254, 255, 0);
        box-shadow: 0 0 0 20px rgba(253, 254, 255, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(253, 254, 255, 0);
        box-shadow: 0 0 0 0 rgba(253, 254, 255, 0);
    }
}

.video-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    max-width: 400px;
    width: 90%;
}

.video-block-title {
    font-weight: 700;
}

.video-block-title h1 {
    font-size: 3rem;
}

.video-block-title p {
    font-size: 1rem;
    color: #8f8f8f;
}

.video-block-form .btn {
    border-radius: 20px;
}

.video-block-form input {
    padding: 0;
    outline: 0;
    border: 0;
    background-color: #333645;
    padding: .8rem 1rem;
    border-radius: 1rem;
    color: #fdfeff;
    font-size: 14px;
    transition: .5s;
}

.video-block-form input::placeholder {
    color: #bbbbbb;
}

.video-block-form input:active, .video-block-form input:focus {
    box-shadow: 0px 2px 2px 0px #048bff85;
    background-color: #333645;
    color: #fdfeff;
}

.video-block-form .and-text {
    font-weight: bold;
    font-size: 21px;
}

#vk_link {
    background: #4d86d1;
    color: #ffffff;
}

.video-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-wrapper .video-fade {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.video-wrapper video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#login_form, #recover_form, #register_form {
    transition: .5s;
}