.login-modal {
    display: none;
    position: fixed;
    z-index: 10000000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 41, 41, 0.66);
    padding-top: 8px;
}
#login-container {
    position: relative;
    background-color: #fefefe;
    margin: 10% auto 15% auto;
    border-radius: 3px;
    width: 400px;
}
#login-main {
    display: grid;
}
#login-field-container {
	grid-column: 1;
}
#login-form-container {
}
#login-register-container {
	grid-column: 2;
}
#login-form {
    padding: 20px;
}
.login-title {
	font-weight: bold;
    background-color: #003c79;
    color: #fff;
    text-align: center;
    font-size: 15px;
    padding: 10px;
}
#login-forgot {
	text-align: left;
	font-size: 13px;
	cursor: pointer;

	color: #0081fa;
    text-align: right;
    text-decoration: underline;
}
.input-label {
	font-weight: bold;
	font-size: 15px;
	text-align: left;
	cursor: default;
	padding-top: 8px;
	padding-bottom: 5px;
}
#login-form > input[type=text], #login-form > input[type=password] {
    width: 100%;
    padding: 10px 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}
.login-error-container {
    display: none;
    grid-row: 2;
    width: 100%;
    border: 1px solid red;
    border-radius: 7px;
    background: url(/images/login/error.png);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: top;
    background-position-x: 15px;
    background-position-y: 20px;
    margin-top: 20px;
}
.login-error-message {
    font-size: 11px;
    color: red;
    text-align: left;
    padding: 15px 10px 15px 70px;
    line-height: 16px;
}
.login-promotion {
	padding-top: 30px;
/*	width: 700px;
	height: 202px;*/
}
.login-button-normal {
    margin-top: 20px;
    height: 40px;
    background-color: #f6cb00;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    line-height: 41px;
    cursor: pointer;
    border-radius: 2px;
}
.login-button-green {
    margin-top: 20px;
    height: 40px;
    background-color: #39b54a;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    line-height: 41px;
    cursor: pointer;
    border-radius: 2px;
    display:none;
}

.login-button-normal:hover, .login-button-green:hover {
    background: #d1d6db;
    color: #000;
}
.login-close {
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 35px;
    font-weight: bold;
    /*color: rgba(0, 0, 0, 0.5);*/
    color: #fff;
    transition: 250ms color;
    cursor: pointer;
}
.login-animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}
@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)} 
    to {-webkit-transform: scale(1)}
} 
@keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}
