/*
  forms.css is an auxiliary style sheet for the EdsRadio.com Web site.
  forms.css last modified: 16 April 2016.
  Code last validated:     18 July 2017.
  Copyright (c) 2017 by Edward Bronejko
*/

form {
	margin-top:       2em;
	padding-top:      20px;
	border:           4px ridge #c4955d;
	border-radius:    7px;
	color:            black;
	font-size:        large;
	}

form p {
	padding-left: 30px;
	}

form p label.textbox, form p label.textarea {
	text-align:   right;
	display:      inline-block;
	width:        150px;
	padding-left: 20px;
	margin-right: 20px;
	}

form p.bigbox {
	padding-top: 20px;
	}

form p label.textarea {
	float: left;
	}

form p > strong {
	font-weight: bold;
	}

form textarea {
	margin-top:    10px;
	margin-left:   0px;
	padding:       5px;
	border:        2px solid grey;
	border-radius: 7px;
	color:         black;
	font-size:     large;
	font-family:   tahoma, arial, sans-serif;
	}

textarea:focus {
	background-color: LightGrey;
	border:           2px solid black;
	color:            black;
	transition:       background-color 0.5s linear;
	}

input {
	border:        2px solid grey;
	border-radius: 5px;
	margin-top:    20px;
	font-family:   tahoma, arial, sans-serif;

	}

input[type="text"] {
	width: 250px;
	}

input[type="text"]:focus {
	border:           2px solid black;
	background-color: LightGrey;
	transition:       background-color 0.5s linear;
	}

input#ax_code {
	width:       100px;
	margin-left: 20px;
	}

input[type="submit"] {
	text-align:  center;
	display:     block;
	font-size:   16px;
	font-weight: bold;
	height:      30px;
	width:       110px;
	margin:      20px auto 20px;
	cursor:      pointer;
	}

.required {
	margin-left: 10px;
	font-weight: normal;
	font-size:   90%;
	text-align:  left;
	display:     inline;
	color:       red;
	}

#main > form > div > input#submit {
	font-size: large;
	color:     black;
	}

