body
{
	font-family: Arial, Helvetica, sans-serif;
	background-color:Black;
	color: White;
	background: linear-gradient(to right, #000000 0%, #434343 50%, #000000 100%);
}

h1
{
	font-size:55px;
	color: gray;
  	text-align:center;
 	text-shadow: 5px 2px 7px black;
 	margin:0;
}

.logoimage
{
	background-image: url(../jobCards/images/PAESLogo.png);
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
   	margin: auto; 
	height: 100px;
	width: 350px;
	padding: 20px;	
}

.select-none
{
   -webkit-user-select: none;  /* Chrome 49+ */
   -moz-user-select: none;     /* Firefox 43+ */
   -ms-user-select: none;      /* No support yet */
   user-select: none;
}
 
#login-box
{
	position: absolute;
    height: 450px;
    width:480px;
	top: 50%; 
	left: 50%; 
	margin-right: -50%;
    transform: translate(-50%, -50%);
    
    background-color: #34343;
    border: 1px solid gray;
    border-radius: 15px;

   
    /*background: linear-gradient(to left, #434343 0%, black 100%); */ 

    	box-shadow: 10px 13px 25px 12px black;  

    	
}

#login-error-message
{
	margin-top: 25px;
    display:block;
	font-size: 15px;
	text-align:center;
	color: white;
}	


.form-style-1 {
    margin:0 auto;
    max-width: 375px;
    padding: 0;
}

.form-style-1 li {
	margin:5px auto;
    padding: 3px;
    display: block;
    list-style: none; 
}

.form-style-1 label{
    margin:0 0 2px 0;
    padding:0px;
    display:block;
}
.form-style-1 input{
	font-size:18px;
}
.form-style-1-heading{
    font-weight: normal;
    font-style: italic;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
    font-size: 18px;
    padding-bottom: 3px;
    color: Orange;
}

.form-style-1 input[type=text],
.form-style-1 input[type=email],
.form-style-1 input[type=password],
textarea,
select{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border:1px solid #BEBEBE;
    padding: 3px;
    margin:0px;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none; 
}
.form-style-1 input[type=text]:focus,
.form-style-1 input[type=password]:focus,
.form-style-1 input[type=email]:focus,
.form-style-1 textarea:focus,
.form-style-1 select:focus{
    -moz-box-shadow: 0 0 8px #88D5E9;
    -webkit-box-shadow: 0 0 8px #88D5E9;
    box-shadow: 0 0 8px #88D5E9;
    border: 1px solid lime;
}


.form-style-1 .field-divided{
    width: 49%;
}

.form-style-1 .field-long{
    width: 100%;
}
.form-style-1 .field-select{
    width: 100%;
}
.form-style-1 .field-textarea{
    height: 100px;
}
.form-style-1 input[type=submit], .form-style-1 input[type=button]{
    background: #4B99AD;
    padding: 8px 15px 8px 15px;
    border: none;
    color:  black; /*#fff;*/
    font-size: 15px; 
}
.form-style-1 input[type=submit]:hover, .form-style-1 input[type=button]:hover{
    background: #00ffff; /*#4691A4;*/
    box-shadow:none;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
}


