* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%; 
    height: 100%;
}

body {
    background: url("login_background.jpg") no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
    overflow-x: hidden;
}

.frostedcontainer {
    width: 90%;
    height: calc(90% - 40px);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);   
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    background: inherit;
    overflow: hidden;
    display: block;
    top: calc(5% + 40px);
    bottom: 5%;
    left: 5%;
    right: 5%;

    align-items: center;
    justify-content: center;
}

.frostedcontainer:before {
    content: "";
    position: absolute;
    background: inherit;
    margin: auto;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
    filter: blur(10px);
    margin: -20px;
}

.logo {
    /*display: flex;*/ 
    margin-top: 5%;
    text-align: center;
    justify-content: center; 
    align-items: center;

    -webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

    cursor:default; 
}

.logo img {
    width: 30%; 
    height: auto;
}

#login-main .service-login-custom {
    text-align: center;
    vertical-align: middle;
    margin: 20% auto 20% auto;
}
