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: space-evenly;
  align-items: stretch;
  margin: 0 auto;
  width: 90%;
}



.main_img_container {
  /* background-color: yellow; */
  margin-bottom: 10px;
  height: 18em;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main_img_container img {
  height: 80%;
  width: auto;
}


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

/* .button {
  display: flex;
  flex-direction: column;
  align-items: center;
} */


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

.login-container {
  /* background-color: green; */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

/* 기본 버튼 스타일 */
.text-button {
  background-color: transparent;
  /* 배경색 없음 */
  border: none;
  /* 테두리 없음 */
  color: gray;
  /* 텍스트 색상 */
  font-size: 16px;
  /* 텍스트 크기 */
  cursor: pointer;
  /* 커서 모양 변경 */
  padding: 0 18px;
  /* 내부 여백 */
}

/* 호버 상태 스타일 */
.text-button:hover {
  color: darkblue;
  /* 호버 시 텍스트 색상 변경 */
}


.input-group {
  margin: 15px 0;
}


.agree {
  margin: 3vh 0;
  /* background-color: rebeccapurple; */
  text-align: start;
  color: gray;
}

.agree a{
  color: #2563EB;
}

.agree input {
  width: auto;
  height: auto;
  margin-right: 10px;
}

.first{
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.second{
  display: flex;
  align-items: center;
}

.sign_up_container {
  display: flex;
  flex-direction: row;
  color: gray;
  align-items: center;
  justify-content: center;
  font-size: 50%;
  margin-top: 1vh;
}

button:hover {
  border: 2px solid white;
  /* background-color: #0056b3; */
}

.error-message {
  color: red;
  text-align: center;
}

/* 개인정보처리, 서비스 약관 */
/* 파란색, 밑줄 */
.privacy{
  color: #2563EB;
  text-decoration: underline;
}
.terms_of_service{
  color: #2563EB;
  text-decoration: underline;
}