@charset "UTF-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0; 
	box-sizing: border-box;
}

body {
	font-family: Arial, Helvetica, "sans-serif";
  background-image: url("../img/bk01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.form-wrapper {
  background: rgba(255,255,255,0.8);
  padding:1em 1em 4em;
  max-width: 370px;
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  margin: auto;	
  border-radius: 5px;
}

h1 {
  text-align: center;
  padding: 1em 0;
}
h1 img{
	width: 50%;
}

form {
  padding: 0 1.5em;
}

.form-item {
  margin-bottom: 0.75em;
  width: 100%;
}

.form-item input {
  background: #FFF;
  border: none;
  border: 2px solid #e9e9e9;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  height: 50px;
  transition: border-color 0.3s;
  width: 100%;
  padding: 10px;
}

.form-item input:focus {
  border-bottom: 2px solid #c0c0c0;
  outline: none;
}

.button-panel {
  margin: 2em 0 0;
  width: 100%;
}

.button-panel .button {
  background: #FF2424;
  border: none;
  color: #fff;
  cursor: pointer;
  height: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2em;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out;
  width: 100%;
}

.button:hover {
  background: #ee3e52;
}

		.toast {
			position: fixed;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			background-color: #333;
			color: #fff;
			padding: 12px 24px;
			border-radius: 4px;
			font-family: Arial, sans-serif;
			opacity: 0;
			transition: opacity 0.3s ease;
			z-index: 9999;
		}
		.toast.show {
			opacity: 1;
		}


		.modal_wrap {
			position: fixed;
			top: 0;
			left: 0;
			width: 100vw;
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			justify-content: center;
			align-items: center;
			height: 100vh;
/*			background: rgba(0,0,0,0.5);*/
			transition: all 0.3s ease;
			transform: translateY(100%);
			opacity: 0;
		}

		.modal_wrap.open {
			transform: translateY(0);
			opacity: 1;
		}
		
		.modal_wrap>div {
			position: relative;
			  max-width: 370px;
			  width: 95%;
			height: 500px;
			background: #FFF;
			padding:40px 12px;
			border-radius: 5px;
		}
		.modal_wrap>div p {
			text-align: center;
			margin-bottom: 20px;
		}	
		.close {
			display: block;
			position: absolute;
			top: 8px;
			right: 8px;
			z-index:99999;
		}
	button{
	  padding: 0;
	  border: none;
	  background: none;
	  font: inherit;
	  color: inherit;
	  cursor: pointer;
	  outline: none;
	}
	.btn_flex{
		display: flex;
		margin-top: 20px;
	}
	.btn_flex button{
		background: #FF2424;
		color: #FFF;
		padding: 10px;
		width: 50%;
		display:block;
		text-align: center;
		border-radius: 5px;
	}
	.btn label{
		display:block;
	}









	.btn,
	.btn_flex label{
		color: #FFF;
		padding: 10px;
		width: 50%;
		display:block;
		text-align: center;
		border-radius: 5px;
	}
	.btn_flex label:first-child{
		background: #8CC63F;
		margin-right: 5px;
	}
	.btn_flex label:last-child{
		background: #FF2424;
		margin-left: 5px;
	}
	.btn{
		margin: 60px auto 0;
	}
	.btn button{
		background: #8CC63F;
		color: #FFF;
		padding: 10px;
		width: 100%;
		display:block;
		text-align: center;
		border-radius: 5px;
	}
	.btn:hover,
	.btn_flex label:hover {
		opacity: 0.8;
	}

