@font-face {
    font-family: 'Roboto Black';
    src: url('/font/Roboto-Black.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto Bold';
    src: url('/font/Roboto-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto Light';
    src: url('/font/Roboto-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto Medium';
    src: url('/font/Roboto-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto Regular';
    src: url('/font/Roboto-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto Thin';
    src: url('/font/Roboto-Thin.ttf') format('truetype');
}


body {
    margin: 0;
    font-size: 1rem;
    background: #15171a;
    background-repeat: repeat;
    background-image: none;
    background-size: auto;
    color: white;
    font-family: 'Roboto Regular', sans-serif, Arial, Calibri;
    background-image: url("dots.png");
    background-repeat: repeat;
    background-size: contain;
}

#main {
    padding: 50px 0;
    height: 100%;
    min-height: calc(100vh - 69px);
}

#main .container-content {
    display: flex;
}

#footer {
    width: 100%;
    background: #20242b;
    padding: 20px 0;
}
#footer .container {
    display: flex;
    align-items: center;
}
#footer a {
    margin-inline-start: 40px;
    display: inline-block;
    color: #5a6579;
}

#logo {
    width: 300px;
    margin-bottom: 5%;
}

#logo_plesk {
    width: 70px;
    margin-right: auto;
}

a, a:visited, a:focus {
    color: #0070FF;
    text-decoration: none;
}

h1 {
    font-family: 'Roboto Bold', sans-serif, Arial, Calibri;
    font-size: 2.5rem;
    margin-bottom: -15px;
}
h2 {
    font-family: 'Roboto Medium', sans-serif, Arial, Calibri;
    font-size: 2rem;
}
.info {
    display: block;
    margin-top: 50px;
}
ul {
    margin: -3px 0;
}
ul li {
    margin: 5px 0;
}

.content {
    width: 50%;
}
.bg {
    display: block;
    width: 50%;
    background: #15171a url(background_server.svg) 100% 50% no-repeat;
}

.login {
    background-color: white;
    padding: 18px 25px;
    color: #15171a;
    font-size: 1.4rem;
    font-family: 'Roboto Medium', sans-serif, Arial, Calibri;
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 3px;
    margin-top: 40px;
}
.login span {
    margin-right: auto;
}
.login a {
    font-size: 1.2rem;
    background-color: #0070FF;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    transition: 0.3s ease;
}


@media (max-width: 992px) {
    .container-content .content {
        width: 100%;
    }
    .container-content .bg {
        display: none;
    }
    #main .container-content {
        display: block;
    }
    .login {
        font-size: 1rem;
        padding: 14px 18px;
    }
    .login a {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .login {
        padding: 0;
        background-color: transparent;
    }
    .login span {
        display: none;
    }
    .login a {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 576px) {
    #logo {
        width: 200px;
    }
    #footer .container {
        display: block;
        text-align: center;
    }
    #logo_plesk {
        margin-bottom: 14px;
    }
    #footer a {
        margin-inline-start: 0;
        display: block;
        text-align: center;
        margin-bottom: 8px;
    }
}