/* static/css/login.css */

/* 폼 컨테이너 스타일 */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px; /* 입력창 너비에 맞게 조정 */
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
}

/* 제목 스타일 */
h2 {
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

/* 입력창 컨테이너 스타일 */
.input-container {
    width: 100%;
    margin-bottom: 15px;
}

/* 입력창 스타일 */
.input-container input[type="text"],
.input-container input[type="password"] {
    padding: 12px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

/* 체크박스 컨테이너 스타일 */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

/* 체크박스 스타일 */
.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

/* 체크박스 레이블 스타일 */
.checkbox-container label {
    font-size: 14px;
    color: #333;
}

/* 버튼 컨테이너 스타일 */
.button-container {
    width: 100%;
}

/* 버튼 스타일 */
.button-container button {
    padding: 12px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: bold;
}

.button-container button:hover {
    background-color: #0056b3;
}


/* === 다크 테마 맞춤 === */
.form-container {
    background-color: #2a2a40;
    border: 1px solid #3a3a55;
}
h2 { color: #e0e0e0; }
.input-container input[type="text"],
.input-container input[type="password"] {
    background-color: #1f1f33;
    color: #e0e0e0;
    border: 1px solid #444;
}
.input-container input::placeholder { color: #9aa0aa; }
.checkbox-container label { color: #cfd3da; }
