/* 기본 설정 */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #f9f9f9, #eaeaea);
    display: flex;
    justify-content: center; /* 수직 중앙 */
    align-items: center; /* 수평 중앙 */
    min-height: 100vh;
}

/* 로그인 컨테이너 스타일 */
.login-container {
    background-color: #fff;
    width: 600px; /* 가로폭을 늘림 */
    padding: 40px; /* 안쪽 여백 조정 */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* 로고 스타일 */
.logo img {
    width: 600px; /* 로고의 가로폭을 600px로 설정 */
    height: auto; /* 원본 비율 유지 */
    margin-bottom: 20px;
}

/* 타이틀 스타일 */
h1 {
    font-size: 2.5rem; /* 타이틀 폰트 크기 조정 */
    margin-bottom: 30px;
}

/* 에러 메시지 스타일 */
.error {
    color: red;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* 입력 필드 스타일 */
.input-group {
    margin: 20px 0;
}

input[type="text"], input[type="password"] {
    width: 100%; /* 전체 너비로 설정 */
    padding: 15px; /* 입력란 높이 조정 */
    font-size: 1.2rem; /* 텍스트 크기 증가 */
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    outline: none;
    transition: 0.3s;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #6a5af9;
    box-shadow: 0 0 8px rgba(106, 90, 249, 0.5);
}

/* 옵션 체크박스 스타일 */
.options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    font-size: 1rem;
    color: #555;
}

.options label {
    display: flex;
    align-items: center;
}

.options input {
    margin-right: 5px;
}

/* 버튼 스타일 */
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* 전체 너비로 설정 */
    height: 70px; /* 버튼 높이 조정 */
    background-color: #6a5af9;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 1.5rem; /* 버튼 폰트 크기 증가 */
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background-color: #5a4adb;
    transform: scale(1.05);
}

button:active {
    transform: scale(0.98);
}