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


/* body */

body {
	/* overflow: hidden; */
	width: 100vw;
	/* height: 110vh;*/
}

#form {
	margin: 0 auto;
	margin-top: 3%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fafafa;
	box-sizing: border-box;
}

#sub_url {
	height: 20%;
}


/* Form Layout */

.form-wrapper {
	bottom: 0;
	box-sizing: border-box;
	padding: 5%;
	width: 85%;
	height: 95%;
}

@media screen and (min-width : 751px) {
	#form {
		width: 70%;
	}

	.form-wrapper {
		padding: 5% 20% 0;
		padding-bottom: 0;
		height: 100%;
		width: 100%;
	}
}

.form-wrapper-title {
	width: 100%;
	/* height: 20%; */
	text-align: center;
	padding-top: 1em;
	margin-block-start: 0.67em;
	margin-block-end: 0.67em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}

p.text-danger {
	margin-bottom: 0;
}

/* .form-wrapper-title .title {
    font-size: 40px;
} */

.form-wrapper-error {
	width: 100%;
	/* height: 15%; */
	box-sizing: border-box;
	padding: 1% 0;
	text-align: center;
	display: flex;
	flex-direction: column;
}

p.error {
	margin-bottom: 0rem;
}

.form-wrapper-input {
	width: 100%;
	/* height: 40%; */
	box-sizing: border-box;
	padding: 10% 0;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

.form-wrapper-button {
	width: 100%;
	/* height: 20%; */
	display: flex;
	justify-content: center;
	align-items: center;
}

.form-item {
	width: 100%;
	border-bottom: 2px solid #e9e9e9;
	padding: 5% 0;
}

.form-item input {
	font-size: 1rem;
	background: #fafafa;
	border: none;
	box-sizing: border-box;
	color: #666;
	transition: border-color 0.3s;
}

::placeholder {
	font-size: 0.8rem;
}

@media screen and (min-width : 751px) {
	.form-item input {
		font-size: 1.5rem;
	}
}

::placeholder {
	font-size: 1rem;
}

.normal {
	font-weight: 400;
	font-size: 0.8rem;
}

.must_column::after {
	color: red;
	content: "*";
}

input[type="email"],
input[type="text"]:focus,
input[type="password"]:focus {
	outline: none;
	background-color: #EAF7FF;
	/*background-color:#dff0d8;*/
}

input[type="email"],
input[type="text"],
input[type="password"] {
	max-width: 85%;
	width: 100rem;
	display: inline-block;
}

.title {
	font-size: 3rem;
}

.title .sub_title {
	font-size: 1rem;
	margin-bottom: -1rem;
}


@media screen and (max-width : 750px) {
	.title {
		font-size: 2rem;
	}
}

.form-item p,
.cation {
	font-size: 0.8rem;
}

input {
	margin-left: 2%;
	display: inline-block;
}

@media screen and (min-width : 751px) {

	input[type="email"],
	input[type="text"],
	input[type="password"] {
		max-width: 95%;
	}

	.title {
		padding: 0;
		font-size: 4rem;
	}

	input[type="email"],
	input[type="text"],
	input[type="password"] {
		max-width: 80%;
	}
}