﻿body {
    background: url(../CoreImages/Office.jpg) !important;
    background-size: cover;
    background-repeat: no-repeat;
    font-weight: 100;
    font-size: 15pt;
}

#LinesBG {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: url(../CoreImages/LinePattern.png) repeat rgb(5,5,15);
    opacity: 0.95;
    z-index: -1;
}

.cardWrapper, .card, .cardFace {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 530px;
    transform: translate(-50%,-50%);
    float: left;
    -webkit-font-smoothing: antialiased;
    overflow: visible;
}

.WelcomeBox {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 530px;
    transform: translate(-50%,-50%);
    clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 90%);
    color: white;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
}

.WelcomeBox > div {
    position: relative;
    padding: 50px 100px;
    height: 100%;
    background: rgba(55,55,75,0.7);
}

.WelcomeBox > div:first-child {
    height:130px;
    background: rgba(32,32,48,0.8);
}

.WelcomeBox a {
    font-weight:700;
}

#LogForm > div {
    display: block;
    position: relative;
}

.InputWarp:first-of-type {
    position: absolute;
    margin-top: 0px;
}

.InputWarp {
    position: relative;
    margin-top: 20px;
}

.InputBox {
    margin-bottom: 30px;
    width: 100%;
    line-height: 40px;
    background: none;
    border: none;
    border-bottom: 0.5px solid rgb(10, 10, 10);
    outline: none;
    font-family: 'Cairo', sans-serif;
    text-indent: 10px;
    font-size: 12pt;
    color: rgb(0, 179, 242);
    transition: all 1s;
}

.InputBox:focus {
    background: rgba(100,100,100,0.2);
}

.InputValidator {
    position: absolute;
    top: 10px;
    right: 0px;
    color: red;
    font-size: 10pt;
    font-weight: 900;
}

.InputBox:valid + .FocusInput, .InputBox:focus + .FocusInput {
    top: -30px;
    left: 0px;
    font-size: 10pt;
}

.FocusInput {
    position: absolute;
    display: block;
    top: 0px;
    left: 10px;
    line-height: 40px;
    transition: all 0.5s;
}

.NotEmpty {
    
}

.SpanUp {
    top: -30px !important;
    left: 0px !important;
    font-size: 10pt !important;
}

.FormButton {
    width: 150px;
    height: 50px;
    background: rgb(0, 179, 242);
    border: none;
    outline: none;
    font-family: 'Cairo', sans-serif;
    font-size: 12pt;
    color: white;
    transition: all 0.5s;
}

.FormButton:hover {
    background: rgb(0, 120, 150);
}

#LogNow, #BackLog::after {
    cursor: pointer;
}

#BackLog {
    top: 230px;
    left: -50px;
    position: absolute;
    width: 50px !important;
    margin-right: 10px;
    background: rgba(255,0,0,0.8);
    text-align: center;
}

#BackLog:hover {
    background: rgb(180,10,18);
}

    #BackLog::after {
        content: '\25C0';
        color: white;
        font-size: 20pt;
    }

#footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    line-height: 50px;
    text-align: center;
    background: rgb(5,5,15);
    color: rgb(80,80,80);
}