*,
*:after,
*:before {
    box-sizing: border-box;
}

html,
body {
    font-family: Arial, Tahoma, Helvetica, sans-serif;
}

.container-login {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background: #ffffff2e;
}

.header {
    display: block;
    font-size: 30px;
    color: #333;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 30px;
}

.header img {
    max-width: 100%;
}

.header.pd-10 {
    padding-bottom: 10px;
}

.pt-10 {
    padding-top: 10px;
}

.recovery-text-block {
    padding-bottom: 20px;
    font-size: 15px;
    color: #4CAF50;
    text-align: center;
}

.clear {
    clear: both;
}

.wrapper {
    width: 420px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

form {
    position: relative;
}

.clear {
    clear: both;
}

.wrap-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
}

.m-b-input {
    margin-bottom: 23px;
}

.label-input {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    padding-left: 7px;
}

input {
    outline: none;
    border: none;
}

.input {
    font-size: 15px;
    color: #444;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: 0 0;
    padding: 0 5px;
    padding-left: 35px;
}

.focus-input {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-input::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background: #4a8dff;
    background: -webkit-linear-gradient(left, #21d4fd, #4a8dff);
    background: -o-linear-gradient(left, #21d4fd, #4a8dff);
    background: -moz-linear-gradient(left, #21d4fd, #4a8dff);
    background: linear-gradient(left, #21d4fd, #4a8dff);
}

.focus-input .label-input {
    color: #adadad;
    font-size: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: calc(100% - 20px);
    bottom: 0;
    left: 0;
    padding-left: 10px;
    padding-top: 3px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input:focus + .focus-input::before {
    width: 100%;
}

.input:focus + .focus-input .label-input {
    color: #4a8dff;
}

.has-val.input + .focus-input .label-input {
    color: #4a8dff;
}

.has-val.input + .focus-input::before {
    width: 100%;
}

.link-forgot-password {
    text-align: right;
}

.link-forgot-password a {
    text-decoration: none;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.link-forgot-password a:hover {
    color: #4a8dff;
}

.container-login-form-recaptcha {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px;
}

.container-login-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px;
}

.wrap-login-form-btn {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 25px;
    overflow: hidden;
    margin: 0 auto;
}

.login-form-bgbtn {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    top: 0;
    left: -100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background: #4a8dff;
    background: -webkit-linear-gradient(left, #21d4fd, #4a8dff);
    background: -o-linear-gradient(left, #21d4fd, #4a8dff);
    background: -moz-linear-gradient(left, #21d4fd, #4a8dff);
    background: linear-gradient(left, #21d4fd, #4a8dff);
}

.login-form-bgbtn.is-disabled {
    opacity: 0.5;
}

.login-form-bgbtn.is-disabled .login-form-btn {
    cursor: default;
}

button {
    outline: none !important;
    border: none;
    background: 0 0;
}

.login-form-btn {
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    cursor: pointer;
}

.wrap-login-form-btn:hover .login-form-bgbtn:not(.is-disabled) {
    left: 0;
}

.txt-block {
    padding-top: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #888;
    text-align: center;
    padding-bottom: 10px;
}

.social-txt-block {
    padding-top: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    text-align: center;
    padding-bottom: 10px;
}

.flex-c-m {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.social-user-photo img {
    width: 100px;
    height: 100px;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.social-user-photo {
    position: relative;
}

.social-user-photo .login-social-item {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.login-social-item {
    font-size: 25px;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 5px;
    border: 1px solid #aaa;
    cursor: pointer;
}

.login-social-item.active {
    cursor: default;
}

.login-social-item:hover {
    box-shadow: 0 0 8px 1px #848484;
}


.login-social-item.vk {
    background: #3c6ca3;
}

.login-social-item.vkontakte {
    background: #3c6ca3;
}

.login-social-item.facebook {
    background: #304288;
}

.login-social-item.twitter i {
    color: #fff;
}

.login-social-item.twitter {
    background: #1da1f2;
}

.login-social-item.odnoklassniki {
    background: #f18d2d;
}

.login-social-item.mailru {
    background: #25468e;
}

.login-social-item.google {
    background: #be1914;
}

.login-social-item.yandex {
    background: #fff;
}

.login-social-item.yandex i {
    color: #be1914;
}

.login-social-item.mailru {
    background: #25468e;
}

.login-social-item.mailru i {
    color: #f8a00e;
}

.link-register {
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.link-register.single {
    font-size: inherit;
}


.link-register a {
    text-decoration: none;
    color: #4a8dff;
    font-weight: bold;
}

@media (max-width: 576px) {
    .container-login {
        padding: 0;
    }

    .wrapper {
        padding: 30px 15px 30px;
        border: none;
    }
}

@media (max-width: 385px) {
    .flex-c-m {
        padding: 0 15px;
    }
}

@media (max-width: 325px) {
    .flex-c-m {
        padding: 0;
    }
}

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 45px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    pointer-events: none;
    font-family: Poppins-Regular;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "!";
    font-size: 16px;
    font-family: "Arial";
    color: #fff;
    display: flex;
    position: absolute;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 50%;
    background-color: #c80000;
    top: 45px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}

.form-delimeter {
    border: 0 solid #000;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    margin: 20px 0;
    position: relative;
}

#form_alert_block {
    margin: 10px 0;
    color: #f44336;
    display: none;
}

#form_alert_block.success {
    color: #444;
    text-align: center;
}

.success-icon {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 60px;
}

.error-icon {
    color: #a51919;
    margin-bottom: 20px;
    font-size: 60px;
}

.fd-before,
.fd-after {
    flex-grow: 1;
    flex-shrink: 1;
    background-color: #aaa;
    height: 1px;
    position: relative;
}

.fd-text {
    color: #888;
    font-size: 13px;
    font-weight: 600;
    line-height: 15px;
    margin: 0 18px;
    text-transform: uppercase;
}

.squaredFour {
    width: 22px;
    position: relative;
    margin: 5px auto;
    display: inline-block;
}

.squaredFour label {
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    top: -2px;
    left: 0;
    background: #f8f8f8;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.squaredFour label:after {
    content: "";
    width: 16px;
    height: 9px;
    position: absolute;
    top: 5px;
    left: 4px;
    border: 3px solid #4a8dff;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    transform: rotate(-45deg);
}

.squaredFour label:hover::after {
    opacity: 0.5;
}

.squaredFour input[type="checkbox"] {
    visibility: hidden;
}

.squaredFour input[type="checkbox"]:checked + label:after {
    opacity: 1;
}

.container-form-conditions {
    padding: 20px 0 0;
    color: #888;
    font-size: 14px;
}

.container-form-conditions a {
    color: #888;
    font-weight: 700;
}

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #e0e0e0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-container .text {
    text-align: center;
    color: #888;
}

.cssload-thecube {
    width: 69px;
    height: 69px;
    margin: 0 auto;
    margin-top: 46px;
    position: relative;
    transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
}

.cssload-thecube .cssload-cube {
    position: relative;
    transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
}

.cssload-thecube .cssload-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}

.cssload-thecube .cssload-cube:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(43, 160, 199);
    animation: cssload-fold-thecube 2.76s infinite linear both;
    -o-animation: cssload-fold-thecube 2.76s infinite linear both;
    -ms-animation: cssload-fold-thecube 2.76s infinite linear both;
    -webkit-animation: cssload-fold-thecube 2.76s infinite linear both;
    -moz-animation: cssload-fold-thecube 2.76s infinite linear both;
    transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
}

.cssload-thecube .cssload-c2 {
    transform: scale(1.1) rotateZ(90deg);
    -o-transform: scale(1.1) rotateZ(90deg);
    -ms-transform: scale(1.1) rotateZ(90deg);
    -webkit-transform: scale(1.1) rotateZ(90deg);
    -moz-transform: scale(1.1) rotateZ(90deg);
}

.cssload-thecube .cssload-c3 {
    transform: scale(1.1) rotateZ(180deg);
    -o-transform: scale(1.1) rotateZ(180deg);
    -ms-transform: scale(1.1) rotateZ(180deg);
    -webkit-transform: scale(1.1) rotateZ(180deg);
    -moz-transform: scale(1.1) rotateZ(180deg);
}

.cssload-thecube .cssload-c4 {
    transform: scale(1.1) rotateZ(270deg);
    -o-transform: scale(1.1) rotateZ(270deg);
    -ms-transform: scale(1.1) rotateZ(270deg);
    -webkit-transform: scale(1.1) rotateZ(270deg);
    -moz-transform: scale(1.1) rotateZ(270deg);
}

.cssload-thecube .cssload-c2:before {
    animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
    -ms-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
}

.cssload-thecube .cssload-c3:before {
    animation-delay: 0.69s;
    -o-animation-delay: 0.69s;
    -ms-animation-delay: 0.69s;
    -webkit-animation-delay: 0.69s;
    -moz-animation-delay: 0.69s;
}

.cssload-thecube .cssload-c4:before {
    animation-delay: 1.04s;
    -o-animation-delay: 1.04s;
    -ms-animation-delay: 1.04s;
    -webkit-animation-delay: 1.04s;
    -moz-animation-delay: 1.04s;
}


@keyframes cssload-fold-thecube {
    0%, 10% {
        transform: perspective(129px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        transform: perspective(129px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        transform: perspective(129px) rotateY(180deg);
        opacity: 0;
    }
}

@-o-keyframes cssload-fold-thecube {
    0%, 10% {
        -o-transform: perspective(129px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -o-transform: perspective(129px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -o-transform: perspective(129px) rotateY(180deg);
        opacity: 0;
    }
}

@-ms-keyframes cssload-fold-thecube {
    0%, 10% {
        -ms-transform: perspective(129px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -ms-transform: perspective(129px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -ms-transform: perspective(129px) rotateY(180deg);
        opacity: 0;
    }
}

@-webkit-keyframes cssload-fold-thecube {
    0%, 10% {
        -webkit-transform: perspective(129px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -webkit-transform: perspective(129px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -webkit-transform: perspective(129px) rotateY(180deg);
        opacity: 0;
    }
}

@-moz-keyframes cssload-fold-thecube {
    0%, 10% {
        -moz-transform: perspective(129px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -moz-transform: perspective(129px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -moz-transform: perspective(129px) rotateY(180deg);
        opacity: 0;
    }
}

.first-view-block {
    display: block;
}

.second-view-block {
    display: none;
}

.login-form-btn .fountain-loader {
    display: none;
}

.login-form-btn .login-form-btn__text {
    display: block;
}

.login-form-btn.activated .fountain-loader {
    display: block;
}

.login-form-btn.activated .login-form-btn__text {
    display: none;
}

.fountain-loader {
    position: relative;
    width: 90px;
    height: 14px;
    margin: auto;

}

.fountainG {
    position: absolute;
    top: 0;
    background-color: rgb(167, 200, 206);
    width: 14px;
    height: 14px;
    animation-name: bounce_fountainG;
    -o-animation-name: bounce_fountainG;
    -ms-animation-name: bounce_fountainG;
    -webkit-animation-name: bounce_fountainG;
    -moz-animation-name: bounce_fountainG;
    animation-duration: 1.3s;
    -o-animation-duration: 1.3s;
    -ms-animation-duration: 1.3s;
    -webkit-animation-duration: 1.3s;
    -moz-animation-duration: 1.3s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
    transform: scale(.3);
    -o-transform: scale(.3);
    -ms-transform: scale(.3);
    -webkit-transform: scale(.3);
    -moz-transform: scale(.3);
    border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
}

.fountainG_1 {
    left: 0;
    animation-delay: 0.52s;
    -o-animation-delay: 0.52s;
    -ms-animation-delay: 0.52s;
    -webkit-animation-delay: 0.52s;
    -moz-animation-delay: 0.52s;
}

.fountainG_2 {
    left: 19px;
    animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
    -ms-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
}

.fountainG_3 {
    left: 37px;
    animation-delay: 0.78s;
    -o-animation-delay: 0.78s;
    -ms-animation-delay: 0.78s;
    -webkit-animation-delay: 0.78s;
    -moz-animation-delay: 0.78s;
}

.fountainG_4 {
    left: 56px;
    animation-delay: 0.91s;
    -o-animation-delay: 0.91s;
    -ms-animation-delay: 0.91s;
    -webkit-animation-delay: 0.91s;
    -moz-animation-delay: 0.91s;
}

.fountainG_5 {
    left: 75px;
    animation-delay: 1.04s;
    -o-animation-delay: 1.04s;
    -ms-animation-delay: 1.04s;
    -webkit-animation-delay: 1.04s;
    -moz-animation-delay: 1.04s;
}


@keyframes bounce_fountainG {
    0% {
        transform: scale(1);
        background-color: rgb(167, 200, 206);
    }

    100% {
        transform: scale(.3);
        background-color: rgb(150, 160, 231);
    }
}

@-o-keyframes bounce_fountainG {
    0% {
        -o-transform: scale(1);
        background-color: rgb(167, 200, 206);
    }

    100% {
        -o-transform: scale(.3);
        background-color: rgb(150, 160, 231);
    }
}

@-ms-keyframes bounce_fountainG {
    0% {
        -ms-transform: scale(1);
        background-color: rgb(167, 200, 206);
    }

    100% {
        -ms-transform: scale(.3);
        background-color: rgb(150, 160, 231);
    }
}

@-webkit-keyframes bounce_fountainG {
    0% {
        -webkit-transform: scale(1);
        background-color: rgb(167, 200, 206);
    }

    100% {
        -webkit-transform: scale(.3);
        background-color: rgb(150, 160, 231);
    }
}

@-moz-keyframes bounce_fountainG {
    0% {
        -moz-transform: scale(1);
        background-color: rgb(167, 200, 206);
    }

    100% {
        -moz-transform: scale(.3);
        background-color: rgb(150, 160, 231);
    }
}