body {
    background-color: var(--bgColor1);
    
    padding-top: 0px;
    height: 100vh;
}

.bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/bgwarrior2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    filter: grayscale(1);
    opacity: 0.5;
    z-index: -1;
}

.content {
    padding: 0;    
    height: 97vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bgColor2);
}

.login {
    padding: 120px 50px;
    padding-bottom: 30px;
    background-color: var(--bgColorLight1);
    border-radius: 10px;
    box-shadow: 0 0 10px 3px var(--bgColor1);
}

.login form h1 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 80px;
}

.login form table {
    
    color: var(--bgColor1);
}

tr th {
    text-align: right;
    margin-right: 30px;
    font-weight: normal;
    margin: 20px;
}

tr td {
    text-align: left;
    padding-left: 15px;
}

.login form span {
    text-transform: capitalize;
}

.login form input {    
    margin: 3px;
    background-color: #fffffff0;
    border: 2px solid #c0c0c07d;
    width: 300px;
    padding: 5px;
}

.login form .input-wrap {
    margin-left: 3px;
    margin-top: 10px;
}

/* Login Button */

.login form #btn {
    width: 120px;
    height: 40px;
    line-height: 30px;
    background: #5f1b00;
    color: #fff;
    text-align: center;
    font-size: 14px;
    border-radius: 2px;
    background-color: var(--mainColor);
    box-sizing: border-box;
    position: relative;
    border: 0;
    cursor: pointer;
    margin-left: 43px;
    margin-top: 20px;
}

.login form #btn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(to top, #00000010,#ffffff30);
}

.login form #btn:hover {
    background-color: var(--mainColor);
    color: white;
    box-shadow: inset 0 0 5px 3px var(--bgColor2);
}

/* Login Button */

.login .links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}

.login .links a {
    color: var(--bgColor2);
    font-weight: bold;
    text-transform: uppercase;
}

.login .links a:hover {
    text-decoration: underline;
}