#splash, #login {
    background: url('system/images/splash.png');
    background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
}

#login {
    background: url('system/images/login.png');
    display: none;
}

#countdown {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
}

#login-box{
    position: absolute;
    top: 35%;
    right: 15%;
    border-radius: 8px;
    border: 2px solid #00FF9C;
    box-shadow: 
        0 0 10px #00FF9C,
        0 0 20px #00E68A,
        0 0 40px rgba(0, 255, 156, 0.5);
}

#login-button{
    color: #00FF9C;
    border: 1px solid #00FF9C;
    box-shadow: 
        0 0 5px #00FF9C,
        0 0 10px #00E68A,
        0 0 20px rgba(0, 255, 156, 0.5);
}