﻿/* Default CSS Stylesheet for a new Web Application project */

BODY
{
	background:black;
	color:white;
}

td
{
	font-size: 20px;
	font-weight: bold;
	color: white;
	font-family: Arial, Verdana;
	text-decoration: none;
}
.maintextb
{
color:white;
}
a{
	color:white;
	font-weight:bold;
}
input[type=textarea] {
   width: 100%;
    padding: 16px 20px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    height:60px;
    font-size: 30px;
}

input[type=password] {
    width: 100%;
    padding: 16px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    height:60px;
    font-size: 30px;
        height:60px;
    font-size: 30px;

}
input[type=text]:focus {
    border: 3px solid blue;}

input[type=text], select {
    width: 100%;
    padding: 16px 20px;
    margin: 3px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    height:60px;
    font-size: 20px;
}

input[type=submit] {
    width: 100%;
    background-color:#1b0460;
    color: white;
    padding: 18px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    height:70px;
    font-size: 30px;

}

input[type=submit]:hover {
    background-color: #c6842b;}
