* {
    box-sizing: border-box; /* ブロックボックス */
}

html {
	font-size: 16px;
	font-family: "Zen Maru Gothic", sans-serif;
	background-color: #FBFAF7;
}

body {
    margin: 0 0 0 0; /* マージンなし */
    padding: 0 0 0 0; /* パディングなし */
    font-size: 20px;
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
}

main {
	margin: 0 auto 0 auto;
	max-width: 1000px;
}

.header {
	background-color: #D2EBE6;
}

img {
	max-width: 100%;
}

h1 {
	margin-top: 0;
	color: #80350E;
}

.toggle-eye {
  position: absolute;
  transform: translateY(32%);
  width: 24px;
  height: 24px;
  cursor: pointer;
  user-select: none;
}

input#login , input#regist{
	width: 90px;
	height: 40px;
	margin: 5px;
	margin-top: 20px;
	border-radius: 10px;
	background-color: #d2ebe6;
	transition: all 0.2s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	appearance: none;
	border: none;
	font-weight: 500;
}

/*  スマホのサイズに調整 */
.page-frame {
	max-width: 430px;
	min-height: 100vh;
	margin: 0 auto;
	position: relative;
}

/*  スマホ画面用 */

@media screen and (max-width: 767px) {
img#mascot{
	width: 100px;
}
}