﻿html {
    height: 100%;
    width: 100%;
    background-image: url('target.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px;
}

td {
    padding: 2px 5px;
}

.label {
    font-weight: bold;
    color: #808080;
    font-size: 18px;
}

a {
    font-size: 12px;
    text-decoration: none;
    color: #808080;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #000000;
    
}

input[type=text], input[type=password] {
    padding: 5px 10px;
    width: 90%;
    border: 1px solid #808080;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

    input[type=text]:focus, input[type=password]:focus {
        border: 1px solid #2976C1;
        box-shadow: 0px 0px 5px 3px #808080;
    }

input[type=submit] {
    padding: 10px 30px;
    background-color: #808080;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

    input[type=submit]:hover, input[type=submit]:focus {
        background-color: #ffffff;
        color: #808080;
        box-shadow: 0px 0px 5px 3px #808080;
    }

.outer {
    width: 100%;
}

.inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 600px;
    height: 305px;
    background-color: #ffffff;
    border: 1px solid #808080;
}

