@font-face {
    font-family: Websource;
    src: url(/core/assets/fonts/Websource-Regular.woff2);
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: Websource;
    src: url(/core/assets/fonts/Websource-Bold.woff2);
    font-weight: bold;
    font-style: normal;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Websource;
    font-size: 13px;
    outline: none;
    color: #a4a4a6;
}
body {
    background: url(/admin/images/bg.jpg) center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1 {
    color: #fff;
    font-weight: normal;
    margin-bottom: 25px;
}
img {
    width: 78px;
    margin-bottom: 40px;
}
a {
    background: #4285ee;
    border-radius: 25px;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 11px 40px 12px;
    min-width: 180px;
    cursor: pointer;
    text-decoration: none;
}
a:hover {
    background: #3c7de2;
}
.loading {
    width: 26px;
    height: 26px;
    position: relative;
    margin-bottom: 35px;
}
.loading div {
    position: absolute;
    background: #fff;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation-name: loading;
    animation-duration: 1.1s;
    animation-iteration-count: infinite;
    animation-direction: normal;
}
.loading div:nth-child(1) {
    left: 0;
    top: 10px;
    animation-delay:0.41s;
}
.loading div:nth-child(2) {
    left: 2px;
    top: 2px;
    animation-delay:0.55s;
}
.loading div:nth-child(3) {
    top: 0;
    left: 10px;
    animation-delay: 0.69s;
}
.loading div:nth-child(4) {
    right: 2px;
    top: 2px;
    animation-delay: 0.83s;
}
.loading div:nth-child(5) {
    right: 0;
    top: 10px;
    animation-delay: 0.97s;
}
.loading div:nth-child(6) {
    right: 2px;
    bottom: 2px;
    animation-delay: 1.1s;
}
.loading div:nth-child(7) {
    left: 10px;
    bottom: 0;
    animation-delay: 1.24s;
}
.loading div:nth-child(8) {
    left: 2px;
    bottom: 2px;
    animation-delay: 1.38s;
}
@keyframes loading {
    0% {
        transform:scale(1);
    }
    100%{
        transform:scale(0.3);
    }
}