@charset "UTF-8";

* {
	font-family: Arial, Helvetica, sans-serif, "ＭＳ Ｐゴシック";
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-weight: 300;
}

body {
	color: #134383;
	font-weight: 300;
	text-align: center;
}

body ::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #134383;
	font-weight: 300;
}

body :-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #134383;
	opacity: 1;
	font-weight: 300;
}

body ::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #134383;
	opacity: 1;
	font-weight: 300;
}

body :-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #134383;
	font-weight: 300;
}

header {
	width: 100%;
    clear: left;
    text-align: left;
}

.logo {
    height: 80px;
	padding: 15px;
}

.sysName {
	width: 100%;
    height: 100px;
	padding: 20px;
	text-align: center;
	background-color: #134383;
}

footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 40px;
    padding: 12px;
    text-align: center;
	color: white;
	font-size: 14px;
	font-weight: bold;
	overflow: hidden;
	background-color: #134383;
}

.wrapper {
	position: fixed;
	background: #fff;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	min-height: 800px;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	margin-top: 35px;
	margin-bottom: 35px;
	padding: 50px 0;
	height: 100%;
	text-align: center;
}

.form {
	border-radius: 2px 2px 5px 5px;
	margin: 0 auto;
	padding: 20px;
	width: 96%;
	max-width: 480px;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.title {
  font-size: 1.3em;
  font-weight: bold;
  margin: 10px 0 30px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

input {
    position: relative;
	float: left;
	width: 100%;
	height: 50px;
	margin-bottom: 10px;
	padding: 15px 10px;
	border: 1px solid #C0C0C0;
	border-radius: 2px;
	border-left-width: 50px;
	text-align: left;
	font-size: 16px;
}

input::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #C0C0C0;
}
input::-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #C0C0C0;
}
input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #C0C0C0;
}
input::-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #C0C0C0;
}

input:hover, input:focus {
	outline: none;
	color: #444;
	border-color: #134383;
}

i.fa {
    position: relative;
	float: left;
	font-size: 2em;
    margin-top: -50px;
}

.fa-user, .fa-lock {
	color: #fff;
}

.fa-user, .fa-lock {
    margin-left: 15px;
}

.error {
	margin-bottom: 5px;
	color: #FB597C;
	font-weight: bold;
}

a {
	color: #134383;
}

button {
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	background-color: #134383;
	border: 0;
	padding: 15px 10px;
	margin: 15px auto 10px auto;
	color: #FFFFFF;
	border-radius: 3px;
	cursor: pointer;
	font-size: 18px;
	-webkit-transition-duration: 0.25s;
	transition-duration: 0.25s;
	font-weight: bold;
}

button:hover {
	background-color: rgba(19, 67, 131, 0.8);
}

label {
	font-size: 18px;
	font-weight: bold;
}

.popup-box {
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
	background-color: rgba(19, 67, 131, 0.6);
	color: #333;
	display: none;
}

.popup {
	position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    width: 770px;
    height: 380px;
	background-color: #fff;
}

.popup-header {
	background-color: #134383;
	color: #fff;
	width: 100%;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
	font-weight: bold;
}

.popup-content {
        width: 88%;
	margin: 0px 45px;
	text-align: left;
}

.popup-content table {
	width: 100%;
	border-collapse: collapse;
}

.popup-content th {
	background-color: #134383;
	color: #fff;
	text-align: center;
}

.popup-content table, .popup-content th, .popup-content td {
	border: 1px solid #d2d2d2;
}

.popup-content th, .popup-content td {
	padding: 4px 5px;
}

.popup-footer {
	width: 100%;
}

.popup-footer button {
	width: 120px;
	margin: 0 auto;
	padding: 5px 10px;
}

.bg-bubbles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-bubbles li{
    position: absolute;
    list-style: none;
    display: block;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(135,206,250,0.3);
    top: -100px;
    -webkit-animation: square 25s infinite;
    animation:         square 25s infinite;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.bg-bubbles li:nth-child(1){
  left: 10%;
}

.bg-bubbles li:nth-child(2){
	left: 20%;
	width: 80px;
	height: 80px;
	animation-delay: 2s;
	animation-duration: 17s;
}
    
.bg-bubbles li:nth-child(3){
	left: 25%;
	animation-delay: 4s;
}

.bg-bubbles li:nth-child(4){
	left: 40%;
	width: 60px;
	height: 60px;
	animation-duration: 22s;
	background-color: fade(white, 25%);
}

.bg-bubbles li:nth-child(5){
	left: 70%;
}

.bg-bubbles li:nth-child(6){
	left: 80%;
	width: 60px;
	height: 60px;
	animation-delay: 3s;
	background-color: fade(white, 20%);
}

.bg-bubbles li:nth-child(7){
	left: 32%;
	width: 90px;
	height: 90px;
	animation-delay: 7s;
}

.bg-bubbles li:nth-child(8){
	left: 55%;
	width: 50px;
	height: 50px;
	animation-delay: 15s;
	animation-duration: 40s;
}

.bg-bubbles li:nth-child(9){
	left: 25%;
	width: 60px;
	height: 60px;
	animation-delay: 2s;
	animation-duration: 40s;
	background-color: fade(white, 30%);
}

.bg-bubbles li:nth-child(10){
	left: 90%;
	width: 80px;
	height: 80px;
	animation-delay: 11s;
}

@-webkit-keyframes square {
  0%   { transform: translateY(0) translateX(0px);}
  50% { transform: translateY(650px) rotate(800deg) translateX(100px);}
  100% { transform: translateY(10px) rotate(900deg) translateX(-100px);}
}

@keyframes square {
  0%   { transform: translateY(0)translateX(0px);}
  50% { transform: translateY(650px) rotate(800deg) translateX(100px);}
  100% { transform: translateY(10px) rotate(900deg) translateX(-100px);}
}
