/*INTERFACE CONTAINERS AND PANEL STYLING*/

.container {
	display: grid;
	align-self: center;
	width: 300px;
	height: 425px;
	grid-template-rows: 90% 10%;

	margin-top: 20px;
	border: 5px solid black;
	border-radius: 25px;
	background-color: #2986B5;
	padding: 5px;
	text-align: center;
}

.panelLogin {
	grid-area: 1 / 1 / span 1 / span 1;
	background-color: #349BCE;
	border: 2px solid #686666;
	border-radius: 25px;
	padding: 10px;
	text-align: center;
}

.panelInfo {
	grid-area: 2 / 1 / span 1 / span 1;
	background-color: #349BCE;
	border: 2px dashed #686666;
	border-radius: 25px;
	width:80%;
	align-self: center;
	padding-top: 5px;
	margin-top:5px;
	margin-left:25px;
	margin-right:20px;
	text-align: center;
	font-size:10px;
}

/*STYLING OF CONTENTS*/

body {
	
}

p {
	margin: auto;
}

/*STYLING OF IMAGES*/

#imgLogo {
	display: flex;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	width: 75%;
	max-height: 100%;
}

/*FORM COMPONENTS*/

#txtBoxEmail, #txtBoxPassword {
  width: 85%;
  padding: 6px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-radius: 20px;
  background-color: white;
  color: black;
  text-align: center;
}

#txtBoxEmail, #txtBoxPassword::placeholder {
    text-align: center; 
} 


/*BUTTON STYLING*/

.btn {
	display: flex;
	-moz-box-shadow:inset 0px 1px 0px 0px #54a3f7;
	-webkit-box-shadow:inset 0px 1px 0px 0px #54a3f7;
	box-shadow:inset 0px 1px 0px 0px #54a3f7;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #007dc1), color-stop(1, #0061a7));
	background:-moz-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:-webkit-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:-o-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:-ms-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#007dc1', endColorstr='#0061a7',GradientType=0);
	background-color:#007dc1;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	border:1px solid #124d77;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	text-align: center;
	padding: 5px;
	width: 60%;
	height: 11%;
	margin: 8px auto 8px auto;
	text-decoration:none;
	text-shadow:0px 1px 0px #154682;
	text-align: center;
}
.btn:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0061a7), color-stop(1, #007dc1));
	background:-moz-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background:-webkit-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background:-o-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background:-ms-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background:linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0061a7', endColorstr='#007dc1',GradientType=0);
	background-color:#0061a7;
	text-align: center;
}
.btn:active {
	position:relative;
	top:1px;
	text-align: center;
}