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%;
  max-width: 800px;
}



.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;
}

.login_button {
  font-size: 1rem;
  width: 100%;
  height: 50px;
  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 20px;
}

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

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


.input-group {
  margin: 15px 0;
}
.login-form-input{
  font-size: 1rem;
  width: 100%;
  height: 50px;
  padding: 15px;
  border: 1px solid #2E3440;
  border-radius: 15px;
  background-color: rgba(130, 137, 152, 0.5);
  box-sizing: border-box;
  /* margin: 0 20px; */
}

.sign_up_container{
  display: flex;
  flex-direction: row;
  color: gray;
  align-items: center;
  justify-content: center;
  font-size: 0.5em;
  margin-top: 10px;
}

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

/* 기존 코드 위아래로 추가 */
button:active {
  color: inherit; /* 글자색 변화 방지 */
  border: inherit; /* border 변화 방지 */
  background-color: inherit; /* 배경색 변화 방지 */
  box-shadow: none; /* 클릭 시 그림자 효과 제거 */
  outline: none; /* 클릭 시 아웃라인 제거 */
}

#kakao_login_container{
  margin-top: 20px;
}

#kakao_login_container img{
  width: 60px;
  height: auto;
}