@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

body {
	font-family: 'Noto Sans JP', sans-serif;
}

body:has(.password-form) {
	background: #FDFCF8;
	margin: 0;
}

.password-form {
	display: grid;
	place-items: center;
	height: 100vh;
}

.password-form__wrap {
	width: fit-content;
	margin-inline: auto;
	text-align: center;
	padding-bottom:40px;
}

.password-form__title {
	font-size: clamp(40px, 5.5vw, 80px);
}

.password-form__title span {
	font-size: 24px;
	display: block;
}

.password-form__desc {
	font-size: 14px;
	color: #666;
	margin-top: 24px;
}

.password-form__desc span {
	display: inline-block;
}

.password-form__form input {
	width: 100%;
	max-width: 16em;
	display: block;
	margin-inline: auto;
	padding: 16px 14px;
	font-size: 18px;
	border-radius: 10px;
	border: 1px solid #ddd;
	margin-top: 24px;
	box-sizing: border-box;
}

.password-form__form button{
	width: fit-content;
	margin-inline: auto;
	margin-top: 24px;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 10px;
	border: none;
	background: #111;
	color: #fff;
	cursor: pointer;
	transition: transform .06s ease, opacity .2s ease;
  }
  
  .password-form__form button:hover{
	opacity: 0.92;
  }
  
  .password-form__form button:active{
	transform: translateY(1px);
  }
  
  .password-form__form button:focus-visible{
	outline: 3px solid rgba(0,0,0,0.2);
	outline-offset: 3px;
  }
  