﻿html {
    overflow: hidden
}

.BasicWallpaper {
    background-image: url('/Images/Content/LoginWallpaper.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.RadGlass {
    background: #ffffff !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 30px #000000 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    backdrop-filter: blur(5px) !important;
    border: 1px solid #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.verticalBox {
    justify-content: center !important;
    align-content: center !important;
    height: 100vh !important;
}

#policy {
    text-align: left;
    font-size: 8pt;
    color: black;
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 99%;
    direction: ltr
}


.flashing {
    animation: mymove 1s infinite;
}

@keyframes mymove {
    50% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
}
