/* 로그인 페이지 전용 스타일 */
.auth-container {
    max-width: 400px;
}

.auth-header {
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 1.8rem;
    margin-top: 1rem;
}

/* 패스워드 변경 모달 스타일 */
.modal-content {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    margin-bottom: 1rem;
}

.modal-body .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    box-shadow: none;
}

.modal-body .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.notice-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: #fff;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.form-label {
    color: rgba(255, 255, 255, 0.8);
}