
/*Resizing CLUK logo to fit in top navbar*/
img.resize{
	width: 70px;
	height:70px;
}

/*Resizing no0tification chicken logo to fit in top navbar. */
.resizeChick{
	width: 70px;
	height:50px;
	padding-left: 20px;
	margin-top: 10px;
}

/*Giving the h3 header a background color, with width 100%. */
.title{
	padding:0;
	margin: 0;											
	background-color: black;
	height: 70px;
}

/*Setting header color to white and positioning it to the left. Giving it a sp[ecific font family.*/
h3.company{
	color: white;
	text-align: left;
	font-family: sans-serif;
}

/*Setting position and  margin to the notification center icon.*/
.NotificationChicken{									
	float: right;
	margin-right: 3%;
	list-style: none;
}


/* Ensuring the image does not repeat in the background and giving it a width and a height.*/
.bg{
	background-image: url("/2018-19/CSC8005/Team05/website/images/burger2.png");
	/*height: calc(100vh - 80px);*/
	height: 100%;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;																
}

/*Setting body size and font family.*/
body{
	width: 100%;
	/*margin-bottom: 80px;*/
	padding:0;
	font-family: sans-serif;
	text-align: center;
}

/*Setting main class to 100% width and to be as high as the whole viewport size minus the height of the footer.*/
#mainLogin{
	width: 100%;
	height: calc(100vh - 80px);																		
}

/*Setting text color and position of the login box header. Making it thicker by increasing the font weight.*/
.box h2{
	color: white;
	font-weight: 500;
	text-align: center;
}

/*Setting the color of the remaining box's text to white. */
.box p{
	color: white;
}

/*Setting dimensions, border and border-color, position and background color of the login */
.box{
	width:300px;
	padding:40px;
	border: 2px solid rgb(26, 127, 35);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%, -50%);
	background: #191919;
	text-align: center;
}

/*Givin the the username and password input boxes a border radius and dimensions.*/
.box input[type="text"] .box input[type="password"]{
	/*border: none;*/
	  border-radius: 15px;
	-moz-border-radius :15px;
	  -webkit-border-radius: 15px;

	background: none;
	display: block;
	margin: 20px auto;
	text-align: center;
	border: 2px solid green;
	padding: 14px 10px;
	width: 400px;
	outline: none;
	color: red;
	border-collapse: separate;
	border-radius: 24px;
	transition: 0.25s;
}


/*Styling the submit button, giving it a bordser radius, a text and background color and a position. */
.submitButton{
	border: 0;
	background-color: white;
	display: block;
	margin: 20px auto;
	text-align: center;
	border: 2px solid green;
	padding: 14px 10px;
	width: 150px;
	outline: none;
	color: black;
	border-radius: 24px;
	transition: 0.25s;
	cursor: pointer;
}

/*Changing the color of the submit button on hoover. */
.submitButton:hover{
	background-color: green;
}
