﻿@charset "UTF-8";

html {
	height: 100%;
	width: 100%;
}

body {
	background-color: #f1f1f1;
	color: #595959;
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	font-size: 16px;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

a {
	color: #3c94f1;
	outline: none !important;
	text-decoration: none;
}

a:hover {
	color: #1a80d9;
	text-decoration: underline;
}

input[type='text'],
input[type='password'],
select,
textarea {
	border: 1px solid #c5c5c5;
	border-radius: 0;
	outline: none;
}

input::-ms-clear,
input::-ms-reveal {
	visibility: hidden;
}

.btn {
	background-color: #f1f1f1;
	border: 1px solid #bbb;
	border-radius: 2px;
	color: #595959;
	cursor: pointer;
	height: 2.2em;
	line-height: 2.2em;
	padding: 0 0.6em;
}


#wrapper {
	height: 100%;
	width: 100%;
}

#container {
	left: 0;
	position: fixed;
	top: 56px;
	width: 100%;
}

#login {
	margin: auto;
	width: 320px;
}

#login form {
    margin-top: 20px;
    margin-left: 0;
    padding: 26px 24px 46px;
    background: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.13);
    box-shadow: 0 1px 3px rgba(0,0,0,.13);
}

#login input {
	height: 36px;
	line-height: 36px;
	margin-bottom: 1em;
	width: 100%;
}

#login input[type='text'],
#login input[type='password'] {
	-webkit-appearance: none;
	text-indent: 0.5em;
}

#login input[type='submit'] {
	-webkit-appearance: none;
	background-color: #1AA69F;
	border: 1px solid #2B867B;
	color: #fff;
	cursor: pointer;
	margin-bottom: 0;
}

#login input[type='submit']:hover {
	background-color: #099C94;
}

#login .error-message {
    color: #999;
    font-size: 13px;
    margin: 10px 0;
    text-align: center;
}
/* #login }}} */

@media only screen and (max-width: 580px) {
	#login {
		left: 3%;
		width: 88%;
		padding-left: 3%;
		padding-right: 3%;
	}
}