<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('css2.css');
@import url('icon.css');

*
{
    box-sizing: border-box;
}

body
{
    background-color: #3d3f53;
    background-image: linear-gradient(to right, rgb(20, 30, 48), rgb(36, 59, 85));
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    margin: 0;
    height: 100vh;
}

.login-container
{
    width: 350px;
    height: 600px;
    margin: auto;
    padding: 100px 40px;
    position: relative;
    color: #FFF;
    overflow: hidden;
    font-family: Open Sans;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: .3rem;
    box-shadow: 0 0px 30px 0 rgba(0,0,0,0.7);
}

.login-container .video-background
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.login-container .logo
{
    position: relative;    
}

.login-container .logo i
{
    position: absolute;
    top: 20px;
    left: calc(50% - 20px);
    font-size: 40px;
    color: #3d3f53;
}

.login-container .logo:before
{
    content: '';
    display: block;
    height: 70px;
    width: 70px;
    transform: rotate(45deg);
    border: 3px solid rgba(255,255,255,0.5);
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #FFF inset;
    margin: auto;
    margin-bottom: 40px;
}

.login-container .logo:after
{
    content: "Welcome";
    display: block;
    text-transform: uppercase;
    font-family: Open Sans;
    font-size: 25px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 100;
    text-shadow: 0 1px 3px #000;
}

.login-container input:not([type="submit"]):not([type="button"])
{
    display: block;
    width: 100%;
    margin-bottom: 15px;
    font-family: Open Sans;
    border: none;
    padding: 7px 10px 7px 42px;
    background-color: rgba(255,255,255,0.7);
    color: #3d3f53;
    font-family: Open Sans;
    box-shadow: 0 1px 3px 0px rgba(38, 38, 38, 0.5);
    font-weight: bold;
}

.login-container .input-icon
{
    position: absolute;
    margin-top: 2px;
    margin-left: 2px;
    border-right: 2.5px solid #3d3f53;
    padding-right: 3px;
    color: #3d3f53;
}

.login-container input[type="submit"]
{
    border: none;
    width: 100%;
    padding: 7px 10px;
    text-align: center;
    font-family: Open Sans;
    background-color: #3d3f53;
    color: #FFF;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 100;
    transition: 0.4s all;
}

.login-container input[type="submit"]:hover
{
    color: #3d3f53;
    background-color: #FFF;
}

.login-container input:focus
{
    outline: none;
}</pre></body></html>