body,
html {
  background-color: #2E3440;
  margin: 0 auto;
  padding: 0;
  color: white;
  text-align: center;
  max-width: 800px;
  height: 100%;
}

body{
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 콘텐츠가 위로 정렬되도록 설정 */
}

header{
  min-height: 41px;
  max-height: 41px;
}

/* //////////////// */
/* Main 부분 */
main {
  /* background-color: blue; */
  flex-basis: 80%;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
  width: 90%;
  max-width: 800px;
}

h1{
  text-align: start;
}

form{
  /* display: none; */
}

#email_input {
  margin: 15px 0;
}

#find_password_button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  width: 100%;
  /* max-width: 330px; */
  max-height: 60px;
  /* padding: 5px 20px; */
  background-color: gray;
  border-radius: 15px;
  border: none;
  color: white;
}

p{
  margin: 10px;
}

#notify_password_container{
  display: none;
}



/* //////////////// */
/* Footer 부분 */
footer {
  flex-basis: 25%;
  /* background-color: green; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin: 0 20px;
}
