/* css/index.css */

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Pretendard', sans-serif;
  background-color: #f0f2f5;
}

.main-container {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.content-wrapper {
  display: flex;
  width: 100%;
  /* ▼▼▼ [수정] 전체 너비를 800px로 줄여 높이도 함께 줄어 보이도록 조정합니다. ▼▼▼ */
  max-width: 800px; 
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.intro-section {
  flex: 1;
  /* ▼▼▼ [수정] 상하좌우 여백(padding)을 40px로 줄여 높이를 줄이고 박스 너비를 확보합니다. ▼▼▼ */
  padding: 40px; 
  background: linear-gradient(to right, #2c3e50, #34495e);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-section .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.intro-section .logo img {
    width: 50px;
    height: 50px;
}

.intro-section h2 {
  font-weight: 700;
  margin: 0;
}

.intro-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #bdc3c7;
}

.login-section {
  flex: 1;
  /* ▼▼▼ [수정] 로그인 영역의 여백도 40px로 줄여 전체적인 높이를 맞춥니다. ▼▼▼ */
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-section h3 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
}

.login-section .form-control {
    height: 48px;
}

.login-section .btn-primary {
    height: 48px;
    font-weight: 600;
}

.beta-notice {
    margin-top: 30px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-size: 0.85rem;
    text-align: center;
    color: #ffc107;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    background-color: #f0f2f5;
}

.update-notice {
    margin-top: 15px; /* 베타 안내와 간격 조정 */
    padding: 10px;
    background-color: rgba(23, 162, 184, 0.1); /* 옅은 청록색 배경 */
    border: 1px solid rgba(23, 162, 184, 0.3); /* 청록색 테두리 */
    border-radius: 5px;
    font-size: 0.85rem;
    text-align: center;
    color: #0dcaf0; /* 밝은 청록색 텍스트 */
}