﻿/*login page*/

#login_form {
    width: 600px;
    height: 316px;
    background: black;
    opacity: 0.6;
    padding: 36px 75px 75px 75px;
}

input[type="text"],
input[type="password"] {
    border: 2px solid white;
    font-weight: bold;
    color: white;
    background-color: black;
}

input[type="submit"],
input[type="button"] {
    border: 2px solid white;
    font-weight: bold;
    color: white;
    background-color: black;
    float: right !important;
}

 input[type="button"]:hover,
  input[type="button"]:active,
    input[type="submit"]:hover,
    input[type="submit"]:active {
        color: white;
        background-color: #3275C5;
        border-color: white;
    }

label {
    color: white;
    font-weight: bold;
    font-size: 16px;
}

a:link, a:hover {
    font-weight: bold;
    font-size: 14px;
}
