body {
    margin: 0;
    padding: 0;
    background: url(../images/bg.jpg) no-repeat;
    height: 100vh;
    font-family: sans-serif;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    body {
        background-size: cover;
    }
}

#particles-js {
    height: 100%;
}

.loginBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    min-height: 200px;
    background: #fafafad8;
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 5px 5px 8px #14141436;
    padding: 35px;
    box-sizing: border-box;
    border-radius: 10px;
}

.user {
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

h3 {
    margin: 0;
    padding: 0 0 20px;
    color: #2e2e4b;
    text-align: center;
}

.loginBox input {
    width: 100%;
    margin-bottom: 15px;
}

.loginBox input[type="text"],
.loginBox input[type="password"] {
    border: none;
    border-bottom: 1px solid #8d8d8f;
    outline: none;
    height: 40px;
    color: #2e2e4b;
    background: transparent;
    font-size: 14px;
    padding-left: 20px;
    box-sizing: border-box;
}

.loginBox input[type="text"]:focus,
.loginBox input[type="password"]:focus {
    border-bottom: 2px solid #00ffff;
}

.inputBox {
    position: relative;
}

.inputBox span {
    position: absolute;
    top: 10px;
    color: #2e2e4b;
}

.loginBox input[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    font-size: 16px;
    background: #293744;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
}

.loginBox a {
    color: #2e2e4b;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    display: block;
}

a:hover {
    color: #00ffff;
}

p {
    color: #343a40;
    font-size: 12px;
}

@keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }
    to {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}
@-webkit-keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }
    to {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}

@-moz-keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }
    to {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}

@-webkit-keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }
    to {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.clouds {
    width: 10000px;
    height: 100%;
    background: transparent url("../images/mist.png") repeat;
    background-size: 1000px 1000px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 100px;
    opacity: 100%;

    -moz-animation: move-background 150s linear infinite;
    -ms-animation: move-background 150s linear infinite;
    -o-animation: move-background 150s linear infinite;
    -webkit-animation: move-background 150s linear infinite;
    animation: move-background 150s linear infinite;
}
