/* style_login.css */

/* 폰트 불러오기 (선택) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #f3f6f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* 로그인 박스 */
.login-container {
  width: 100%;
  max-width: 400px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* 제목 */
.login-container h2 {
  margin-bottom: 30px;
  color: #2c3e50;
  font-size: 24px;
}

/* 인풋 필드 */
.login-container input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

/* 로그인 버튼 */
.login-container button {
  width: 100%;
  padding: 12px;
  background-color: #3498db;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.login-container button:hover {
  background-color: #2980b9;
}

/* 오류 메시지 */
#error-message {
  margin-top: 15px;
  color: #e74c3c;
  font-size: 14px;
}
