body.login {
    font-family: 'Open Sans', Verdana, Arial, Geneva, sans-serif;
    background: rgb(40, 40, 62);
    background: radial-gradient(circle, rgba(40, 40, 62, 1) 28%, rgba(24, 24, 24, 1) 100%);
    background-attachment: fixed;
    background-size: cover;
    font-size: 14px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    color: #fff;
}

.login-box {
    position: relative;
    margin-top: -100px;
    width: 240px;
}

.login-box-row {
    margin: 0 auto 15px auto;
}

.login-button {
    background-color: #fbc400;
    border-radius: 4px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #2c2c2c;
    font-weight: bold;
    text-decoration: none;
}

.login-button:hover {
    text-decoration: none;
    background-color: #ffd02a;
}

.login-box a {
    display: inline;
}

.login-box a:hover {
    color: #000;
    text-decoration: underline;
}

#msg.off {
    display: none !important;
}

.msge {
    text-align: center;
}

.msg,
#msg .msg {
    padding: 10px;
    background-color: #fbc400;
    text-align: center;
    display: block;
    border-radius: 4px;
    margin-bottom: 20px;
}

.login-box a.link {
    margin: 20px 0 0 0;
}

.login-box input:hover,
.login-box input {
    border: none;
    height: 50px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0 10px;
}

#msg.off {
    display: none !important;
}

.msge {
    text-align: center;
}

.msg,
#msg .msg {
    min-width: 300px;
    border-radius: 4px;
    text-align: left !important;
    position: fixed;
    bottom: 30px;
    right: 0;
    display: flex;
    animation: error 6s ease 0s infinite alternate none;
    animation-iteration-count: 1;
    opacity: 0;
    background-color: #CC0030;
    color: #fff;
    border-radius: 4px;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 3px 27px rgb(0 0 0 / 5%);
}

@keyframes error {
    0% {
        opacity: 1;
        right: 20px;
    }

    10% {
        opacity: 1;
        right: 20px;
    }

    70% {
        opacity: 1;
        transform: translateY(0px);
        right: 20px;
    }

    100% {
        opacity: 1;
        right: -100%;
    }
}

.button a,
.button {
    background-color: #267A33;
    border-radius: 4px;
    height: 50px;
    line-height: 50px;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    font-size: 12px;
}

.button a:hover,
.button:hover {
    text-decoration: none;
    background-color: #2B8C3A;
    transform: scale(1.0) !important;
}

/* - Button - */
.loader-button {
    width: 10px;
    height: 10px;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 16px 0 #fff, -16px 0 #fff;
    position: relative;
    animation: flash-button 0.5s ease-out infinite alternate;
}

@keyframes flash-button {
    0% {
        background-color: #FFF2;
        box-shadow: 16px 0 #FFF2, -16px 0 #FFF;
    }

    50% {
        background-color: #FFF;
        box-shadow: 16px 0 #FFF2, -16px 0 #FFF2;
    }

    100% {
        background-color: #FFF2;
        box-shadow: 16px 0 #FFF, -16px 0 #FFF2;
    }
}

.name {
    color: #acacac;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 11px;
}

.login-box-ip {
    color: #acacac;
    text-align: center;
    margin: 10px 0 0 0;
    font-size: 11px;
}