/* Cm10-Login.css
	Purpose:	CSS that covers the login page for the Yipkos portal project
*/

/* Map of changes to prototyhpe code

	Old		New			Comments
	u8		YipkosLogo
	u9		Email
	u10		Lock (security password)
	u5		checkbox for staying logged in
	u6		email support line
*/

#YipkosLogoDiv {
	width: 100%;
	margin: 15px 0 20px 0;
}

#YipkosLogo {
	/*
	position: relative;
	left: calc(50% - 137px);
		*/
	display: block;	/* Specifying that it is a block allows */
    margin: auto;	/* the margin:auto to do its job of centering */
	height: 111px;
}

/* For statement: Login to your account */
#loginText {
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
	width: 100%;
	top: 20px;
	color: #666666;
}

/* Actual dimentions for the icons*/
#email-Icon {
	width: 25px;
	height: 20px;
}

#Lock_img {
	width: 19px;
	height: 23px;
}

/* Changes to base class for login push button*/
.loginPushButton {
	background-color: rgba(255, 0, 0, 1);
	font-family: 'Arial-BoldMT', 'Arial Bold', 'Arial';
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	color: #FFFFFF;
	padding: 5px 0 0 130px;
	border-color: red;
	margin-bottom: 5px;
}
/* Text within push button intended to be in the middle */

/* Space inbetween box tops is 316-255 = 61
	Tops: 255
	316 (+61)
	375 (+59)
	425	Stay logged in (+50)
	451 Email support (+26)
*/
#logAndKeepLogged {
	position: relative;
	width: 355px;
	left: calc(50% - 177px);
}

#stayLoggedInDiv {
	position: relative;
	color: #666666;
	float: left;
	margin-bottom: 20px;
}

.stay {
	position: relative;
	display: inline-block;
}

#getPasswordDiv {
	text-align: center;
}
