@charset "utf-8";

body {
  font-family: "Roboto", "Noto Sans KR", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* 로그인 창을 묶고 있는 박스 */
.login-container {
  width: 250px;
  height: auto;
  text-align: center;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-container h1 div {
  width: 40px;
  height: 53px;
  float: left;
  background: url(../../img/sprites.png) -60px 7px;
  background-repeat: no-repeat;
  background-size: 250px;
}

/* 로그인 텍스트 */
.login-container h1 a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* 각각의 로그인 버튼들 */
.login-btn {
  display: block;
  width: 100%;
  margin: 20px 0;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
.naver {
  background-color: #03c75a;
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.kakao {
  background-color: #ffeb00;
  color: black;
  font-size: 16px;
  font-weight: bold;
}

.google {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #dedede;
  font-size: 16px;
  font-weight: bold;
}

.apple {
  background-color: #000000;
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.signup-btn {
  margin-top: 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.signup-btn:hover {
  text-decoration: underline;
}
