@font-face {
	font-family: Prompt;
	font-weight: normal;
	src: url('/font/prompt-regular.woff2');
}

@font-face {
	font-family: Prompt;
	font-weight: bold;
	src: url('/font/prompt-bold.woff2');
}

@font-face {
	font-family: Poppins;
	font-weight: normal;
	src: url('/font/poppins-regular.woff2');
}

@font-face {
	font-family: Poppins;
	font-weight: 300;
	src: url('/font/poppins-light.woff2');
}

html {
	font-size: 24px;
}

* {
	box-sizing: border-box;
	background-repeat: no-repeat;
	line-height: 1.4;
}

body {
	margin: 0;
	font-family: Poppins;
	text-align: center;
	overflow-y: scroll;

	background-color: white;
}

a {
	display: inline-block;
	text-decoration: none;
}

button {
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
}

.content {
	display: inline-block;
	width: 100%;
	max-width: 24rem;
	padding: 0 2rem;
}

.header-line {
	width: 100%;
	height: 1rem;
	background-color: #0048de;
}

.section-logo {
	width: 100%;
	height: 6rem;

	background-image: url('/image/baseshift-logo.svg');
	background-position: 0% 80%;
	background-size: 8rem;
}

.section-form {
	padding: 1rem;
	background-color: white;
	border-radius: 0.1rem;
	border: 1px solid #eee;
	margin-bottom: 2rem;
}

.section-form .title {
	font-family: Prompt;
	padding: 1rem 0;
	font-size: 1.5rem;
}

.section-inputs {
	text-align: left;
	padding: 0 2rem;
}

.section-inputs > * {
	display: inline-block;
	position: relative;
	width: 100%;
	padding-bottom: 2rem;
}

.section-inputs .label {
	position: absolute;
	left: 0;
	top: 0;
	padding: 0.5rem 0.5rem;
	font-size: 0.8rem;
	color: #ccc;
	pointer-events: none;
}

.section-inputs input {
	width: 100%;
	padding: 0.5rem 0.5rem;
	font-size: 0.8rem;
	border: none;
	border-bottom: 1px solid #666;
	background: transparent;
	outline: none;
}

.section-inputs input.has-value + .label,
.section-inputs input:focus + .label {
	margin-top: -0.7rem;
	font-size: 0.6rem;
}

.section-inputs input + .label {
	transition: margin-top 200ms, font-size 200ms;
}

.section-submit {
	text-align: center;
}

.section-submit button {
	background-color: #0048de;
	color: white;
	border-radius: 2rem;
	padding: 0.3rem 2rem;
	font-size: 1.1rem;
	font-weight: normal;
	margin-top: 1rem;
}

.section-submit button:hover {
	background-color: #06e;
}
