@charset "utf-8";

body, html {
	height: 100%;
    margin: 0;
	color: #fafafa;
	font-size: 24px;
}

.signup-background {
	background: 
    linear-gradient(
      rgba(0, 0, 0, 0.8), 
      rgba(0, 0, 0, 0.4)
    ),
    url(/assets/member/background00.jpg);
	
    /* Full height */
    height: 100%; 

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.signup-header {
	padding-left: 15px;
	text-align: left;
	vertical-align: middle;
	font-size: 32px;
}

.signup-button a {
    padding: 8px;
    text-decoration: none;
    color: #fafafa;
    display: block;
    transition: 0.3s;
}

.signup-button a:hover, .signup-button a:focus {
    color: #f1a710;
}

.signup-box {
	background: rgba(0, 0, 0, 0.5);
	text-align: center;
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
	padding: 8px;
}

.signup-box-confirm {
	max-width: 400px;
    margin: auto;
    text-align: left;
}

.signup-title {
	vertical-align: middle;
	margin: 0;
}

.signup-Maininput {
	background: transparent;
	font-family: cwTeXHei, sans-serif;
	color: #fafafa;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.signup-next-prev a {
    padding: 8px;
    text-decoration: none;
    color: #fafafa;
    display: block;
    transition: 0.3s;
}

.signup-next-prev a:hover, .signup-next-prev a:focus {
    color: #f1a710;
}

.signup-error-status {
	color: #D50000;
	font-size: 14px;
	margin-bottom: 10px;
}

.button-Main {
	background: #FF8F00;
	background: -webkit-linear-gradient(#FFCA28, #FF8F00);
	background: -o-linear-gradient(#FFCA28, #FF8F00);
	background: linear-gradient(#FFCA28, #FF8F00);
	border-radius: 4px;
	border: 1px solid #FFB300;
	color: #fff;
	font-size: 14px;
	width: 20em;
	height: 36px;
}

.button-Main:hover {
	background: #FF6F00;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}