/* static/css/style.css */

/* 화면 중앙 정렬 컨테이너 */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
}

/* 카드 디자인 (로그인, 비번변경 공통 사용) */
.auth-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    border: 1px solid #eee;
}

.auth-card h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

/* 폼 요소 스타일 */
.auth-card p {
    margin-bottom: 15px;
}

.auth-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.auth-card input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.3s;
}

.auth-card input:focus {
    border-color: #007bff;
    outline: none;
}

.auth-card .helptext {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    display: block;
}
/* 카드 내부의 리스트 (비밀번호 조건 안내문 등) 스타일 */
.auth-card ul {
    font-size: 12px;   /* 👈 글자 크기를 12px로 작게 설정 */
    color: #888;       /* 👈 너무 튀지 않게 회색으로 설정 */
    list-style: none;  /* 앞에 점(bullet) 없애기 */
    padding: 0;
    margin-top: 5px;
    margin-bottom: 15px;
}

.auth-card ul li {
    margin-bottom: 3px; /* 줄 간격을 살짝 띄워 가독성 확보 */
    line-height: 1.4;   /* 줄 높이 조정 */
}

/* 버튼 스타일 */
.auth-btn {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.auth-btn:hover {
    background-color: #1a252f;
}

/* 카드 내부의 링크 스타일 */
.auth-card a {
    color: #007bff;
    text-decoration: none;
}

.auth-card a:hover {
    text-decoration: underline;
}

/* 카드 내부의 구분선 */
.auth-card hr {
    margin: 25px 0; 
    border: 0; 
    border-top: 1px solid #eee;
}

/* 업무 목록 헤더 배경색 강제 적용 */
.work-table-header th {
    background-color: #e7f1ff !important; /* 쿨 그레이 (Cool Gray) */
    /* 만약 아까 테스트하신 진한 남색을 원하시면: #102235 */
    /* 만약 연한 파란색을 원하시면: #e7f1ff */
}

/* 어두운 배경 입력창의 placeholder 색상 교정 */
.dark-input::placeholder {
    color: #adb5bd !important; /* 밝은 회색 */
    opacity: 0.6; /* 약간 투명하게 */
}

/* 사이드바 삭제 버튼 효과 */
.hover-opacity-100:hover {
    opacity: 1 !important;
    cursor: pointer;
}