/* CSS Document */
*
{
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	-webkit-appearance: none;
	
}
body{
	-webkit-text-size-adjust: 100%;
}

.loginArea
{
	background-color: rgba(255,255,255,0.20);
	width: 70%;
	height: 9em;
	border-radius: 4.5em;
	margin:20px auto;
}

.loginBox {
	border: none;
	width: 80%;
	margin: 0px auto;
	text-align: center;
	border-radius: 14px;
	background: -webkit-linear-gradient(#FFD399, #FF7BAC);
	background: -o-linear-gradient(#FFD399, #FF7BAC);
	background: linear-gradient(#FFD399, #FF7BAC);
}

p {
	margin: 0px;
	line-height: 1.5em;
}

.errorMessage {
	line-height: 1em;
	color: firebrick;
	font-size: 1em;
}

.submitButton {
	font-size: 1.5em;
	color: whitesmoke;
	background-color: #FF8C5E;
	border:none;
	border-radius: 1.5em;
	width:5em;
	height: 1.5em;
	font-weight: bold;
	margin:0.25em;
	clear: both;
	
}

.Cell {
	width: 16em;
	height: 1.2em;
	margin: 0.5em auto;
	text-align: right;
}

.label {
	font-size: 1em;
	line-height: 1.2em;
	width: 5em;
	float: left;
}

.textBox {
	font-size: 0.8em;
	border: none;
	border-bottom: solid 2px rgba(255,255,255,0.50);
	background-color: rgba(255,255,255,0.30);
	border-radius: 2px;
	padding: 0px 2px;
	height: 1.5em;
	width: 10em;
	box-sizing: border-box;
	float: left;
}

.errorMessageBox {
	height: 1em;
}

#headText {
	font-size: 1em;
	margin-left: 1em;
}

@media screen and (max-width:480px){

	body{
		font-size:12px;
	}
	.loginBox{
		width: 90%;
	}
	.Cell{
		width: 19em;
		transform: translateX(20px);
	}
	
	.textBox {
		font-size: 16px;
		transform: scale(0.6);
		transform-origin: left 0;
			
	}
	
	
}
