/*contentsStyle.css*/

@import url(contentsStyle_pc.css) screen and (min-width: 1400px);

@import url(contentsStyle_tablet_mobile.css) screen and ( max-width: 1399px);

/* ÆË¾÷ Ã¢ */

.form-popup {
  width: 50%; height: 400px;
  display: block;
  position: fixed;
  left: 50%; top: 20%;
  margin-left: -25%;
  background: #000;
  
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  
  
}
	.form-container > h1{
		color: #fff;
		text-align: center;
		background: #145fa2;
		font-weight: bold;
		font-size: 20px;
		box-sizing: border-box;
		line-height: 60px;
	}

/* Set a style for the submit/login button */
.form-container .btn {
  width: 30px; height: 30px;
  color: white;
 
  border: none;
  cursor: pointer;
 
  
  opacity: 1;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
  position: absolute;
  bottom: 10px; right: 10px;
}